diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2012-11-07 16:27:14 +0900 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-11-08 12:05:12 -0300 |
commit | 580e338d7e9dc4947cba2e1021e78e76ebe0869e (patch) | |
tree | 4852b6709c167a399423d6b45489e746784f1f54 /tools/perf | |
parent | 1e82574d1db1451f137cb520f21b9176f05284c9 (diff) | |
download | linux-3.10-580e338d7e9dc4947cba2e1021e78e76ebe0869e.tar.gz linux-3.10-580e338d7e9dc4947cba2e1021e78e76ebe0869e.tar.bz2 linux-3.10-580e338d7e9dc4947cba2e1021e78e76ebe0869e.zip |
perf hists: Free branch_info when freeing hist_entry
Those data should be free along with the associated hist_entry,
otherwise it'll be leaked.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1352273234-28912-7-git-send-email-namhyung@kernel.org
[ committer note: mem_info is not yet in perf/core, free just branch_info ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-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 277947a669b..a1b823f8c17 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c @@ -410,6 +410,7 @@ hist_entry__collapse(struct hist_entry *left, struct hist_entry *right) void hist_entry__free(struct hist_entry *he) { + free(he->branch_info); free(he); } |