diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-02-12 21:02:19 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-02-12 21:02:19 -0500 |
commit | d092a070a76d943d708497bd75c5097b7c622524 (patch) | |
tree | 3308addd7a68ce878079faf8fb0974e2fa1a5941 | |
parent | 4314457fc4de51b5ef5cc2df35f4d669299ae2b8 (diff) |
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 <rostedt@goodmis.org>
-rw-r--r-- | trace-graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, | |||
2056 | if (!handle) | 2056 | if (!handle) |
2057 | return -1; | 2057 | return -1; |
2058 | 2058 | ||
2059 | trace_graph_plot_init(ginfo); | ||
2060 | trace_graph_free_info(ginfo); | 2059 | trace_graph_free_info(ginfo); |
2060 | trace_graph_plot_init(ginfo); | ||
2061 | 2061 | ||
2062 | ginfo->handle = handle; | 2062 | ginfo->handle = handle; |
2063 | tracecmd_ref(handle); | 2063 | tracecmd_ref(handle); |