diff options
author | Namhyung Kim <namhyung@gmail.com> | 2011-12-27 19:35:50 +0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-01-03 20:37:19 +0400 |
commit | 057a174a064f68bac042d618ce3c6ea3ccd9a8aa (patch) | |
tree | 55de90f0825a2de3532f323982be720bd5b7366e | |
parent | 15e6392feec311f1e409d77e1ccfe51c1d940365 (diff) | |
download | linux-057a174a064f68bac042d618ce3c6ea3ccd9a8aa.tar.xz |
perf top: Fix a memory leak
The 'buf' should be freed when symbol wasn't found too.
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/1325000151-4463-3-git-send-email-namhyung@gmail.com
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/builtin-top.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index c3836b966ccf..4f81eeb99875 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c @@ -351,7 +351,6 @@ static void perf_top__prompt_symbol(struct perf_top *top, const char *msg) if (!found) { fprintf(stderr, "Sorry, %s is not active.\n", buf); sleep(1); - return; } else perf_top__parse_source(top, found); |