summaryrefslogtreecommitdiffstats
path: root/lib/decompress_bunzip2.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/decompress_bunzip2.c')
-rw-r--r--lib/decompress_bunzip2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/decompress_bunzip2.c b/lib/decompress_bunzip2.c
index 0234361b24b8..7c4932eed748 100644
--- a/lib/decompress_bunzip2.c
+++ b/lib/decompress_bunzip2.c
@@ -51,6 +51,7 @@
51#endif /* STATIC */ 51#endif /* STATIC */
52 52
53#include <linux/decompress/mm.h> 53#include <linux/decompress/mm.h>
54#include <linux/crc32poly.h>
54 55
55#ifndef INT_MAX 56#ifndef INT_MAX
56#define INT_MAX 0x7fffffff 57#define INT_MAX 0x7fffffff
@@ -654,7 +655,7 @@ static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, long len,
654 for (i = 0; i < 256; i++) { 655 for (i = 0; i < 256; i++) {
655 c = i << 24; 656 c = i << 24;
656 for (j = 8; j; j--) 657 for (j = 8; j; j--)
657 c = c&0x80000000 ? (c << 1)^0x04c11db7 : (c << 1); 658 c = c&0x80000000 ? (c << 1)^(CRC32_POLY_BE) : (c << 1);
658 bd->crc32Table[i] = c; 659 bd->crc32Table[i] = c;
659 } 660 }
660 661