diff options
author | Sasha Levin <sasha.levin@oracle.com> | 2012-12-21 15:00:58 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-01-24 14:40:16 -0500 |
commit | fba7a78220fd969beeaa9abbb97c5f7027a7b4fd (patch) | |
tree | 31d68c09decc734dafd666f316bdeab5a2a222cc /tools/lib/traceevent | |
parent | 6bf1a295a896c8dbe8cad663c6344e8c877a0570 (diff) |
tools lib traceevent: test correct variable after allocation
we've tested the wrong variable for allocation failure, fix it to
test the right one.
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/1356120062-2648-1-git-send-email-sasha.levin@oracle.com
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib/traceevent')
-rw-r--r-- | tools/lib/traceevent/event-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/traceevent/event-parse.c b/tools/lib/traceevent/event-parse.c index 5a824e355d04..7538a1f9c557 100644 --- a/tools/lib/traceevent/event-parse.c +++ b/tools/lib/traceevent/event-parse.c | |||
@@ -2481,7 +2481,7 @@ process_dynamic_array(struct event_format *event, struct print_arg *arg, char ** | |||
2481 | 2481 | ||
2482 | free_token(token); | 2482 | free_token(token); |
2483 | arg = alloc_arg(); | 2483 | arg = alloc_arg(); |
2484 | if (!field) { | 2484 | if (!arg) { |
2485 | do_warning("%s: not enough memory!", __func__); | 2485 | do_warning("%s: not enough memory!", __func__); |
2486 | *tok = NULL; | 2486 | *tok = NULL; |
2487 | return EVENT_ERROR; | 2487 | return EVENT_ERROR; |