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 <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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
cf3e291601
commit
2d9ca5f62f
@@ -102,6 +102,7 @@ static ssize_t uwrite(void const *const buf, size_t const count)
|
|||||||
{
|
{
|
||||||
size_t cnt = count;
|
size_t cnt = count;
|
||||||
off_t idx = 0;
|
off_t idx = 0;
|
||||||
|
void *p = NULL;
|
||||||
|
|
||||||
file_updated = 1;
|
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;
|
off_t aoffset = (file_ptr + count) - file_end;
|
||||||
|
|
||||||
if (aoffset > file_append_size) {
|
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;
|
file_append_size = aoffset;
|
||||||
}
|
}
|
||||||
if (!file_append) {
|
if (!file_append) {
|
||||||
|
|||||||
Reference in New Issue
Block a user