perf script: Fix a NULL pointer dereference
If 'perf script --gen-script' was called with a perf.data which contains no tracepoint event, it'd segfault due to NULL pevent pointer. Fix it. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Cc: Feng Tang <feng.tang@intel.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1344909423-26384-1-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Родитель
0fe7d7e976
Коммит
d0d3913895
|
@ -293,7 +293,7 @@ struct event_format *trace_find_next_event(struct pevent *pevent,
|
|||
{
|
||||
static int idx;
|
||||
|
||||
if (!pevent->events)
|
||||
if (!pevent || !pevent->events)
|
||||
return NULL;
|
||||
|
||||
if (!event) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче