aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Hauer <[email protected]>2012-01-12 17:21:01 -0800
committerLinus Torvalds <[email protected]>2012-01-12 20:13:13 -0800
commit35f1526845a9d804206883e19bd257d3dcef758f (patch)
treeaaefaf3e43abec7522fe08f8632cd7ff5dbffa7f
parentc755201eb5c1e09f3477d0e83ae1e3aadac0e8d1 (diff)
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 <[email protected]> Cc: Lasse Collin <[email protected]> Cc: Namhyung Kim <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--lib/decompress_unlzo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/decompress_unlzo.c b/lib/decompress_unlzo.c
index 5a7a2adf4c4c..4531294fa62f 100644
--- a/lib/decompress_unlzo.c
+++ b/lib/decompress_unlzo.c
@@ -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);