From d092a070a76d943d708497bd75c5097b7c622524 Mon Sep 17 00:00:00 2001 From: Steven Rostedt Date: Fri, 12 Feb 2010 21:02:19 -0500 Subject: trace-graph: Free old plot info before initializing new plot info The order of freeing the old plot info and initializing the new plot info was backwards, and caused loading a new graph to output tons of errors about gc being NULL. Signed-off-by: Steven Rostedt --- trace-graph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trace-graph.c b/trace-graph.c index 3440497..344c506 100644 --- a/trace-graph.c +++ b/trace-graph.c @@ -2056,8 +2056,8 @@ static int load_handle(struct graph_info *ginfo, if (!handle) return -1; - trace_graph_plot_init(ginfo); trace_graph_free_info(ginfo); + trace_graph_plot_init(ginfo); ginfo->handle = handle; tracecmd_ref(handle); -- cgit v1.2.2