diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-11 15:23:23 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-11 15:23:23 +0000 |
commit | 43c409498681a8c8b391114edcdfbf5a21bf5d1c (patch) | |
tree | a0e43f134baf0aa7f3754db71b8b8fa57a701426 | |
parent | 0f05388ec89adf75b62f65c63f9fa05d0508cc5e (diff) | |
download | busybox-w32-43c409498681a8c8b391114edcdfbf5a21bf5d1c.tar.gz busybox-w32-43c409498681a8c8b391114edcdfbf5a21bf5d1c.tar.bz2 busybox-w32-43c409498681a8c8b391114edcdfbf5a21bf5d1c.zip |
Patch from Vladamir Oleynik, reducing memory consumption.
git-svn-id: svn://busybox.net/trunk/busybox@15068 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | archival/libunarchive/decompress_uncompress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/decompress_uncompress.c b/archival/libunarchive/decompress_uncompress.c index 539d4ef90..1e859dcde 100644 --- a/archival/libunarchive/decompress_uncompress.c +++ b/archival/libunarchive/decompress_uncompress.c | |||
@@ -76,7 +76,7 @@ static unsigned char inbuf[IBUFSIZ + 64]; | |||
76 | static unsigned char outbuf[OBUFSIZ + 2048]; | 76 | static unsigned char outbuf[OBUFSIZ + 2048]; |
77 | 77 | ||
78 | 78 | ||
79 | static long int htab[HSIZE]; | 79 | static unsigned char htab[HSIZE]; |
80 | static unsigned short codetab[HSIZE]; | 80 | static unsigned short codetab[HSIZE]; |
81 | 81 | ||
82 | #define htabof(i) htab[i] | 82 | #define htabof(i) htab[i] |