Patch from Vladamir Oleynik, reducing memory consumption.
authorRob Landley <rob@landley.net>
Thu, 11 May 2006 15:23:23 +0000 (15:23 -0000)
committerRob Landley <rob@landley.net>
Thu, 11 May 2006 15:23:23 +0000 (15:23 -0000)
archival/libunarchive/decompress_uncompress.c

index 539d4ef90ced880caa42d4676f37b010824682d4..1e859dcde8bc388dbf5d2c8bf6ff308e9c2a8b12 100644 (file)
@@ -76,7 +76,7 @@ static unsigned char inbuf[IBUFSIZ + 64];
 static unsigned char outbuf[OBUFSIZ + 2048];
 
 
-static long int htab[HSIZE];
+static unsigned char htab[HSIZE];
 static unsigned short codetab[HSIZE];
 
 #define        htabof(i)                               htab[i]