diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2013-09-11 07:09:27 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-10-09 20:58:28 +0200 |
commit | 909b143162de7af310d2a9351220030260ebe728 (patch) | |
tree | fc7ea08f188006231ecdc59a63c6e5536e3b762a /tools/perf/util | |
parent | perf annotate: Reuse path from the result of addr2line (diff) | |
download | linux-909b143162de7af310d2a9351220030260ebe728.tar.xz linux-909b143162de7af310d2a9351220030260ebe728.zip |
perf hists: Free srcline when freeing hist_entry
We've been leaked srcline of hist_entry, it should be freed also.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Reviewed-by: Jiri Olsa <jolsa@redhat.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1378876173-13363-4-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util')
-rw-r--r-- | tools/perf/util/hist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index f3278a388e9a..e6fc38a86e2c 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c @@ -535,6 +535,7 @@ void hist_entry__free(struct hist_entry *he) { free(he->branch_info); free(he->mem_info); + free(he->srcline); free(he); } |