diff options
author | Namhyung Kim <namhyung@kernel.org> | 2013-12-12 02:36:04 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-12-13 08:30:21 -0500 |
commit | 9451a2fd78c785445afe0f6966b2043c3ee187ca (patch) | |
tree | 7dd0f8eeca4aea307b3a809c37160b69d4fd8d1b /tools/lib | |
parent | 8f2f5ada719560954174da30ce0a67261c616e39 (diff) |
tools lib traceevent: Get rid of malloc_or_die() in show_error()
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung.kim@lge.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/1386833777-3790-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/traceevent/parse-filter.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/tools/lib/traceevent/parse-filter.c b/tools/lib/traceevent/parse-filter.c index ab402fb2dcf7..d4b0bac80dc8 100644 --- a/tools/lib/traceevent/parse-filter.c +++ b/tools/lib/traceevent/parse-filter.c | |||
@@ -56,7 +56,21 @@ static void show_error(char **error_str, const char *fmt, ...) | |||
56 | index = pevent_get_input_buf_ptr(); | 56 | index = pevent_get_input_buf_ptr(); |
57 | len = input ? strlen(input) : 0; | 57 | len = input ? strlen(input) : 0; |
58 | 58 | ||
59 | error = malloc_or_die(MAX_ERR_STR_SIZE + (len*2) + 3); | 59 | error = malloc(MAX_ERR_STR_SIZE + (len*2) + 3); |
60 | if (error == NULL) { | ||
61 | /* | ||
62 | * Maybe it's due to len is too long. | ||
63 | * Retry without the input buffer part. | ||
64 | */ | ||
65 | len = 0; | ||
66 | |||
67 | error = malloc(MAX_ERR_STR_SIZE); | ||
68 | if (error == NULL) { | ||
69 | /* no memory */ | ||
70 | *error_str = NULL; | ||
71 | return; | ||
72 | } | ||
73 | } | ||
60 | 74 | ||
61 | if (len) { | 75 | if (len) { |
62 | strcpy(error, input); | 76 | strcpy(error, input); |