mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
unlzo: fix input buffer free
unlzo modifies the pointer to in_buf, so we have to free the original buffer, not the modified pointer. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Cc: Lasse Collin <lasse.collin@tukaani.org> Cc: Namhyung Kim <namhyung@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
c755201eb5
commit
35f1526845
@ -279,7 +279,7 @@ STATIC inline int INIT unlzo(u8 *input, int in_len,
|
||||
ret = 0;
|
||||
exit_2:
|
||||
if (!input)
|
||||
free(in_buf);
|
||||
free(in_buf_save);
|
||||
exit_1:
|
||||
if (!output)
|
||||
free(out_buf);
|
||||
|
Loading…
Reference in New Issue
Block a user