]> Git Repo - linux.git/commitdiff
lib/decompress_unlz4.c: always set an error return code on failures
authorJan Beulich <[email protected]>
Thu, 23 Jan 2014 23:56:20 +0000 (15:56 -0800)
committerLinus Torvalds <[email protected]>
Fri, 24 Jan 2014 00:37:04 +0000 (16:37 -0800)
"ret", being set to -1 early on, gets cleared by the first invocation of
lz4_decompress()/lz4_decompress_unknownoutputsize(), and hence subsequent
failures wouldn't be noticed by the caller without setting it back to -1
right after those calls.

Reported-by: Matthew Daley <[email protected]>
Signed-off-by: Jan Beulich <[email protected]>
Cc: Kyungsik Lee <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
lib/decompress_unlz4.c

index 3e67cfad16ad53614508e126d87f4d0024128577..7d1e83caf8ad8512c3a0d39e4f5e5b5c39de619f 100644 (file)
@@ -141,6 +141,7 @@ STATIC inline int INIT unlz4(u8 *input, int in_len,
                        goto exit_2;
                }
 
+               ret = -1;
                if (flush && flush(outp, dest_len) != dest_len)
                        goto exit_2;
                if (output)
This page took 0.055798 seconds and 4 git commands to generate.