diff options
author | Taeung Song <treeze.taeung@gmail.com> | 2015-06-30 17:15:24 +0900 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-07-01 17:53:49 -0300 |
commit | 07a716fff25b826461baa2a07faa2df8c171f220 (patch) | |
tree | 48073bdc18d40156386e736a2299035b40f9e96d /tools | |
parent | 249ca1a86067e6a4198f7b2b7e19b505e2f41864 (diff) | |
download | linux-exynos-07a716fff25b826461baa2a07faa2df8c171f220.tar.gz linux-exynos-07a716fff25b826461baa2a07faa2df8c171f220.tar.bz2 linux-exynos-07a716fff25b826461baa2a07faa2df8c171f220.zip |
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>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/builtin-report.c | 6 |
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: if (report.header || report.header_only) { perf_session__fprintf_info(session, stdout, report.show_full_info); - if (report.header_only) - return 0; + if (report.header_only) { + ret = 0; + goto error; + } } else if (use_browser == 0) { fputs("# To display the perf.data header info, please use --header/--header-only options.\n#\n", stdout); |