Skip to content

Commit

Permalink
recordmcount: Fix memory leaks in the uwrite function
Browse files Browse the repository at this point in the history
[ Upstream commit fa359d0 ]

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 <zenghao@kylinos.cn>
Suggested-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
Hao Zeng authored and gregkh committed May 24, 2023
1 parent 4e2df91 commit 895130e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/recordmcount.c
Expand Up @@ -102,14 +102,18 @@ 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;

if (file_ptr + count >= file_end) {
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) {
Expand Down

0 comments on commit 895130e

Please sign in to comment.