Skip to content
Snippets Groups Projects
Commit b58f608e authored by Jiri Olsa's avatar Jiri Olsa Committed by Arnaldo Carvalho de Melo
Browse files

perf tools: Fix memory leak in event_format__print function


Properly destroying trace_seq object.

Signed-off-by: default avatarJiri Olsa <jolsa@redhat.com>
Acked-by: default avatarNamhyung Kim <namhyung@kernel.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/1391377150-23920-2-git-send-email-jolsa@redhat.com


Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent a601fdff
No related branches found
No related tags found
No related merge requests found
...@@ -126,6 +126,7 @@ void event_format__print(struct event_format *event, ...@@ -126,6 +126,7 @@ void event_format__print(struct event_format *event,
trace_seq_init(&s); trace_seq_init(&s);
pevent_event_info(&s, event, &record); pevent_event_info(&s, event, &record);
trace_seq_do_printf(&s); trace_seq_do_printf(&s);
trace_seq_destroy(&s);
} }
void parse_proc_kallsyms(struct pevent *pevent, void parse_proc_kallsyms(struct pevent *pevent,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment