aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/util/thread_map.c
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung@kernel.org>2015-12-10 12:00:58 +0900
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-12-10 15:47:51 -0300
commit7ecb48fde39e1d61ab8aff95581dcdfb572bcc28 (patch)
treeed0d93f44c4d0b725587cdce5b7ca7ec1c0fa9a2 /tools/perf/util/thread_map.c
parentf8a5c0b24b8b1e77a0812b0c8251db0afc0524b7 (diff)
perf thread_map: Free strlist on constructor error path
Signed-off-by: Namhyung Kim <namhyung@kernel.org> Reviewed-by: Josh Poimboeuf <jpoimboe@redhat.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1449716459-23004-7-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/thread_map.c')
-rw-r--r--tools/perf/util/thread_map.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/thread_map.c b/tools/perf/util/thread_map.c
index 6ec3c5ca438f..371fb28fe5b1 100644
--- a/tools/perf/util/thread_map.c
+++ b/tools/perf/util/thread_map.c
@@ -304,6 +304,7 @@ out:
out_free_threads:
zfree(&threads);
+ strlist__delete(slist);
goto out;
}