lkml.org 
[lkml]   [2019]   [Aug]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [tip: perf/core] perf script: Fix memory leaks in list_scripts()
From
Date
Hi,

On 8/27/19 3:26 AM, tip-bot2 for Gustavo A. R. Silva wrote:
> The following commit has been merged into the perf/core branch of tip:
>
> Commit-ID: 3b4acbb92dbda4829e021e5c6d5410658849fa1c
> Gitweb: https://git.kernel.org/tip/3b4acbb92dbda4829e021e5c6d5410658849fa1c
> Author: Gustavo A. R. Silva <gustavo@embeddedor.com>
> AuthorDate: Mon, 08 Apr 2019 11:27:48 -05:00
> Committer: Arnaldo Carvalho de Melo <acme@redhat.com>
> CommitterDate: Mon, 26 Aug 2019 11:58:30 -03:00
>
> perf script: Fix memory leaks in list_scripts()
>
> In case memory resources for *buf* and *paths* were allocated, jump to
> *out* and release them before return.
>
> Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>

This should be tagged for stable:

Cc: stable@vger.kernel.org

> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
> Cc: Andi Kleen <ak@linux.intel.com>
> Cc: Gustavo A. R. Silva <gustavo@embeddedor.com>
> Cc: Jiri Olsa <jolsa@redhat.com>
> Cc: Namhyung Kim <namhyung@kernel.org>
> Cc: Peter Zijlstra <peterz@infradead.org>
> Addresses-Coverity-ID: 1444328 ("Resource leak")
> Fixes: 6f3da20e151f ("perf report: Support builtin perf script in scripts menu")
> Link: http://lkml.kernel.org/r/20190408162748.GA21008@embeddedor
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> ---
> tools/perf/ui/browsers/scripts.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/tools/perf/ui/browsers/scripts.c b/tools/perf/ui/browsers/scripts.c
> index f2fd9f0..50e0c03 100644
> --- a/tools/perf/ui/browsers/scripts.c
> +++ b/tools/perf/ui/browsers/scripts.c
> @@ -133,8 +133,10 @@ static int list_scripts(char *script_name, bool *custom,
> int key = ui_browser__input_window("perf script command",
> "Enter perf script command line (without perf script prefix)",
> script_args, "", 0);
> - if (key != K_ENTER)
> - return -1;
> + if (key != K_ENTER) {
> + ret = -1;
> + goto out;
> + }
> sprintf(script_name, "%s script %s", perf, script_args);
> } else if (choice < num + max_std) {
> strcpy(script_name, paths[choice]);
>

--
Gustavo

\
 
 \ /
  Last update: 2019-08-27 18:13    [W:0.183 / U:0.328 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site