From: Namhyung Kim <namhyung....@lge.com> Those data should be free along with the associated hist_entry, otherwise they'll be leaked.
Cc: Stephane Eranian <eran...@google.com> Signed-off-by: Namhyung Kim <namhy...@kernel.org> --- tools/perf/util/hist.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index 52fe4e24502b..50030133fb3b 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c @@ -470,6 +470,8 @@ 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->mem_info); free(he); } -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/