From bdeda78cf66c59d38109b033546639ee662cdc3b Mon Sep 17 00:00:00 2001 From: Steven Rostedt Date: Fri, 12 Feb 2010 17:19:35 -0500 Subject: trace-cmd: Move free of record out of show_data in trace-cmd read There is no reason that the record that is passed to show_data should be freed by show_data. Free it from the location that allocated it. Signed-off-by: Steven Rostedt --- trace-read.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/trace-read.c b/trace-read.c index f7b9e17..12862b5 100644 --- a/trace-read.c +++ b/trace-read.c @@ -203,8 +203,6 @@ static void show_data(struct tracecmd_input *handle, pevent_print_event(pevent, &s, record); trace_seq_do_printf(&s); printf("\n"); - - free_record(record); } static void read_rest(void) @@ -252,9 +250,10 @@ static void read_data_info(struct tracecmd_input *handle) } else record = tracecmd_read_next_data(handle, &cpu); - if (record) + if (record) { show_data(handle, record, next); - + free_record(record); + } } while (record); show_test(handle); -- cgit v1.2.2