aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaeung Song <treeze.taeung@gmail.com>2015-06-30 04:15:24 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-07-01 16:53:49 -0400
commit07a716fff25b826461baa2a07faa2df8c171f220 (patch)
tree48073bdc18d40156386e736a2299035b40f9e96d
parent249ca1a86067e6a4198f7b2b7e19b505e2f41864 (diff)
perf report: Fill in the missing session freeing after an error occurs
When an error occurs an error value is just returned without freeing the session. So allocating and freeing session have to be matched as a pair even if an error occurs. Signed-off-by: Taeung Song <treeze.taeung@gmail.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: http://lkml.kernel.org/r/1435652124-22414-6-git-send-email-treeze.taeung@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/builtin-report.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index 348bed4a2abf..95a47719aec3 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -839,8 +839,10 @@ repeat:
839 if (report.header || report.header_only) { 839 if (report.header || report.header_only) {
840 perf_session__fprintf_info(session, stdout, 840 perf_session__fprintf_info(session, stdout,
841 report.show_full_info); 841 report.show_full_info);
842 if (report.header_only) 842 if (report.header_only) {
843 return 0; 843 ret = 0;
844 goto error;
845 }
844 } else if (use_browser == 0) { 846 } else if (use_browser == 0) {
845 fputs("# To display the perf.data header info, please use --header/--header-only options.\n#\n", 847 fputs("# To display the perf.data header info, please use --header/--header-only options.\n#\n",
846 stdout); 848 stdout);