diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-11-16 22:18:11 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-11-17 01:19:56 -0500 |
commit | a9a70bbce7ab0bf3b1cba3ac662c4d502da6305c (patch) | |
tree | d2215ac394e9f9320d059a139a405f012abcd708 /tools/perf/builtin-record.c | |
parent | 5875412152ce67fb5087157b86ab6597f91d23e8 (diff) |
perf tools: Don't die() in perf_header__new()
Propagate the errors instead, the users are the ones to decide
what to do if a library call fails.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <1258427892-16312-3-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/builtin-record.c')
-rw-r--r-- | tools/perf/builtin-record.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c index 2a85205ba01a..82260c56db3d 100644 --- a/tools/perf/builtin-record.c +++ b/tools/perf/builtin-record.c | |||
@@ -439,6 +439,11 @@ static int __cmd_record(int argc, const char **argv) | |||
439 | else | 439 | else |
440 | header = perf_header__new(); | 440 | header = perf_header__new(); |
441 | 441 | ||
442 | if (header == NULL) { | ||
443 | pr_err("Not enough memory for reading perf file header\n"); | ||
444 | return -1; | ||
445 | } | ||
446 | |||
442 | if (raw_samples) { | 447 | if (raw_samples) { |
443 | perf_header__set_feat(header, HEADER_TRACE_INFO); | 448 | perf_header__set_feat(header, HEADER_TRACE_INFO); |
444 | } else { | 449 | } else { |