diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2013-01-24 20:44:44 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-01-30 08:37:04 -0500 |
commit | 43f8e76e6b96eb1327cff62ac1cc733a51f31068 (patch) | |
tree | adbfe9a7f3972d4cd905e55aa3e1004e72179636 /tools/perf/util/evsel.c | |
parent | 13370a9b5bb88f7aa90e5be68972d95096b20a6d (diff) |
perf evsel: Fix memory leaks on evsel->counts
The ->counts field was never freed in the current code. Add
perf_evsel__free_counts() function to free it properly.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
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/1359078284-32080-1-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/evsel.c')
-rw-r--r-- | tools/perf/util/evsel.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c index dbdcca43cac6..baa26ddbcc7b 100644 --- a/tools/perf/util/evsel.c +++ b/tools/perf/util/evsel.c | |||
@@ -640,6 +640,11 @@ void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads) | |||
640 | } | 640 | } |
641 | } | 641 | } |
642 | 642 | ||
643 | void perf_evsel__free_counts(struct perf_evsel *evsel) | ||
644 | { | ||
645 | free(evsel->counts); | ||
646 | } | ||
647 | |||
643 | void perf_evsel__exit(struct perf_evsel *evsel) | 648 | void perf_evsel__exit(struct perf_evsel *evsel) |
644 | { | 649 | { |
645 | assert(list_empty(&evsel->node)); | 650 | assert(list_empty(&evsel->node)); |