Selaa lähdekoodia

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>
Sascha Hauer 13 vuotta sitten
vanhempi
commit
35f1526845
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      lib/decompress_unlzo.c

+ 1 - 1
lib/decompress_unlzo.c

@@ -279,7 +279,7 @@ STATIC inline int INIT unlzo(u8 *input, int in_len,
 	ret = 0;
 	ret = 0;
 exit_2:
 exit_2:
 	if (!input)
 	if (!input)
-		free(in_buf);
+		free(in_buf_save);
 exit_1:
 exit_1:
 	if (!output)
 	if (!output)
 		free(out_buf);
 		free(out_buf);