diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 21:40:19 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 21:40:19 +0000 |
commit | c6758a07c68033627a692cda27aebc8f6a662e7f (patch) | |
tree | 51bc0b498a5e16f8041604d913e25708cc76058f /archival/libunarchive/decompress_unzip.c | |
parent | 335b63d8d1876ce4e172ebcc9d64544785682244 (diff) | |
download | busybox-w32-c6758a07c68033627a692cda27aebc8f6a662e7f.tar.gz busybox-w32-c6758a07c68033627a692cda27aebc8f6a662e7f.tar.bz2 busybox-w32-c6758a07c68033627a692cda27aebc8f6a662e7f.zip |
make compressed help code NOMMU- and NOFORK-friendly -
no forking anymore, bunzip2 unpack routine now does all it in memory.
Diffstat (limited to 'archival/libunarchive/decompress_unzip.c')
-rw-r--r-- | archival/libunarchive/decompress_unzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c index 331fe34d8..19ce5097a 100644 --- a/archival/libunarchive/decompress_unzip.c +++ b/archival/libunarchive/decompress_unzip.c | |||
@@ -1000,7 +1000,7 @@ inflate_unzip_internal(STATE_PARAM int in, int out) | |||
1000 | gunzip_bb = 0; | 1000 | gunzip_bb = 0; |
1001 | 1001 | ||
1002 | /* Create the crc table */ | 1002 | /* Create the crc table */ |
1003 | gunzip_crc_table = crc32_filltable(0); | 1003 | gunzip_crc_table = crc32_filltable(NULL, 0); |
1004 | gunzip_crc = ~0; | 1004 | gunzip_crc = ~0; |
1005 | 1005 | ||
1006 | /* Allocate space for buffer */ | 1006 | /* Allocate space for buffer */ |