Explorar o código

bzip2/lzma: fix constant in decompress_inflate

Impact: Cleanup

Fix constant 0x8100 /* 32K */; according to Alain the value 0x8100 was
left over test code to test misalignment, the correct value is indeed
0x8000 == 32K.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin %!s(int64=16) %!d(string=hai) anos
pai
achega
5619448fc5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lib/decompress_inflate.c

+ 1 - 1
lib/decompress_inflate.c

@@ -41,7 +41,7 @@ STATIC int INIT gunzip(unsigned char *buf, int len,
 	set_error_fn(error_fn);
 	rc = -1;
 	if (flush) {
-		out_len = 0x8100; /* 32 K */
+		out_len = 0x8000; /* 32 K */
 		out_buf = malloc(out_len);
 	} else {
 		out_len = 0x7fffffff; /* no limit */