From: Hao Zeng Date: Wed, 26 Apr 2023 01:05:27 +0000 (+0800) Subject: recordmcount: Fix memory leaks in the uwrite function X-Git-Tag: v6.1.37~1044 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=895130e63c93926f07caf5db286b97bd27b81de9;p=platform%2Fkernel%2Flinux-starfive.git recordmcount: Fix memory leaks in the uwrite function [ Upstream commit fa359d068574d29e7d2f0fdd0ebe4c6a12b5cfb9 ] Common realloc mistake: 'file_append' nulled but not freed upon failure Link: https://lkml.kernel.org/r/20230426010527.703093-1-zenghao@kylinos.cn Signed-off-by: Hao Zeng Suggested-by: Steven Rostedt Signed-off-by: Steven Rostedt (Google) Signed-off-by: Sasha Levin --- diff --git a/scripts/recordmcount.c b/scripts/recordmcount.c index cce12e1..ec692af 100644 --- a/scripts/recordmcount.c +++ b/scripts/recordmcount.c @@ -102,6 +102,7 @@ static ssize_t uwrite(void const *const buf, size_t const count) { size_t cnt = count; off_t idx = 0; + void *p = NULL; file_updated = 1; @@ -109,7 +110,10 @@ static ssize_t uwrite(void const *const buf, size_t const count) off_t aoffset = (file_ptr + count) - file_end; if (aoffset > file_append_size) { - file_append = realloc(file_append, aoffset); + p = realloc(file_append, aoffset); + if (!p) + free(file_append); + file_append = p; file_append_size = aoffset; } if (!file_append) {