diff options
author | Namhyung Kim <namhyung@gmail.com> | 2011-12-12 10:16:52 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-12-20 10:40:27 -0500 |
commit | d74c896b7e3250a07f7d0315eecdd2ae1a7bc3c3 (patch) | |
tree | cb98caea083eb69494cfbd27e33702c87015cf30 /tools | |
parent | 2b600f9578852d12af59420011e3dadfaa58b043 (diff) |
perf symbols: Fix error path on symbol__init()
The order of freeing comm_list and dso_list should be reversed.
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1323703017-6060-4-git-send-email-namhyung@gmail.com
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/symbol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c index e54b13d4c357..215d50f2042e 100644 --- a/tools/perf/util/symbol.c +++ b/tools/perf/util/symbol.c | |||
@@ -2604,10 +2604,10 @@ int symbol__init(void) | |||
2604 | symbol_conf.initialized = true; | 2604 | symbol_conf.initialized = true; |
2605 | return 0; | 2605 | return 0; |
2606 | 2606 | ||
2607 | out_free_dso_list: | ||
2608 | strlist__delete(symbol_conf.dso_list); | ||
2609 | out_free_comm_list: | 2607 | out_free_comm_list: |
2610 | strlist__delete(symbol_conf.comm_list); | 2608 | strlist__delete(symbol_conf.comm_list); |
2609 | out_free_dso_list: | ||
2610 | strlist__delete(symbol_conf.dso_list); | ||
2611 | return -1; | 2611 | return -1; |
2612 | } | 2612 | } |
2613 | 2613 | ||