[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <f9e9f458-96f3-4a97-a1d5-9feec2420e07@huawei.com>
Date: Wed, 16 Oct 2019 16:38:45 +0800
From: Yunfeng Ye <yeyunfeng@...wei.com>
To: <peterz@...radead.org>, <mingo@...hat.com>, <acme@...nel.org>,
<mark.rutland@....com>, <alexander.shishkin@...ux.intel.com>,
<jolsa@...hat.com>, <namhyung@...nel.org>
CC: <linux-kernel@...r.kernel.org>, <hushiyuan@...wei.com>,
<linfeilong@...wei.com>
Subject: [PATCH] perf kmem: Fix memory leak in compact_gfp_flags()
The memory @orig_flags is allocated by strdup(), it is freed on the
normal path, but leak to free on the error path.
Fix this by adding free(orig_flags) on the error path.
Signed-off-by: Yunfeng Ye <yeyunfeng@...wei.com>
---
tools/perf/builtin-kmem.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/perf/builtin-kmem.c b/tools/perf/builtin-kmem.c
index 1e61e353f579..9661671cc26e 100644
--- a/tools/perf/builtin-kmem.c
+++ b/tools/perf/builtin-kmem.c
@@ -691,6 +691,7 @@ static char *compact_gfp_flags(char *gfp_flags)
new = realloc(new_flags, len + strlen(cpt) + 2);
if (new == NULL) {
free(new_flags);
+ free(orig_flags);
return NULL;
}
--
2.7.4.3
Powered by blists - more mailing lists