diff options
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 883aaac46..3d0364339 100644 --- a/archival/libunarchive/decompress_unzip.c +++ b/archival/libunarchive/decompress_unzip.c | |||
@@ -176,7 +176,7 @@ static void make_gunzip_crc_table(void) | |||
176 | 176 | ||
177 | /* initial shift register value */ | 177 | /* initial shift register value */ |
178 | gunzip_crc = 0xffffffffL; | 178 | gunzip_crc = 0xffffffffL; |
179 | gunzip_crc_table = (unsigned int *) malloc(256 * sizeof(unsigned int)); | 179 | gunzip_crc_table = (unsigned int *) xmalloc(256 * sizeof(unsigned int)); |
180 | 180 | ||
181 | /* Compute and print table of CRC's, five per line */ | 181 | /* Compute and print table of CRC's, five per line */ |
182 | for (i = 0; i < 256; i++) { | 182 | for (i = 0; i < 256; i++) { |