mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
jffs2: Fix memory leak in jffs2_scan_eraseblock() error path
In jffs2_scan_eraseblock(), 'sumptr' is allocated through kmalloc() if 'sumlen' is larger than 'buf_size'. However, it is not deallocated in the following execution if jffs2_fill_scan_buf() fails, leading to a memory leak bug. To fix this issue, free 'sumptr' before returning the error. Signed-off-by: Wenwen Wang <wenwen@cs.uga.edu> Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
61b875e88a
commit
6a379f6745
@ -527,8 +527,11 @@ static int jffs2_scan_eraseblock (struct jffs2_sb_info *c, struct jffs2_eraseblo
|
|||||||
err = jffs2_fill_scan_buf(c, sumptr,
|
err = jffs2_fill_scan_buf(c, sumptr,
|
||||||
jeb->offset + c->sector_size - sumlen,
|
jeb->offset + c->sector_size - sumlen,
|
||||||
sumlen - buf_len);
|
sumlen - buf_len);
|
||||||
if (err)
|
if (err) {
|
||||||
|
if (sumlen > buf_size)
|
||||||
|
kfree(sumptr);
|
||||||
return err;
|
return err;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user