diff options
author | Tianjie Xu <xunchang@google.com> | 2016-02-23 20:25:11 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-02-23 20:25:11 +0100 |
commit | 0d63468171a80bd84a859fbd36b8d874f030c764 (patch) | |
tree | ae365ea8ec66b1feb7770cf4e69958ec2bd76389 | |
parent | Merge "Control fault injection with config files instead of build flags" (diff) | |
parent | Merge "Surpress warnings in minzip/Zip.c" (diff) | |
download | android_bootable_recovery-0d63468171a80bd84a859fbd36b8d874f030c764.tar android_bootable_recovery-0d63468171a80bd84a859fbd36b8d874f030c764.tar.gz android_bootable_recovery-0d63468171a80bd84a859fbd36b8d874f030c764.tar.bz2 android_bootable_recovery-0d63468171a80bd84a859fbd36b8d874f030c764.tar.lz android_bootable_recovery-0d63468171a80bd84a859fbd36b8d874f030c764.tar.xz android_bootable_recovery-0d63468171a80bd84a859fbd36b8d874f030c764.tar.zst android_bootable_recovery-0d63468171a80bd84a859fbd36b8d874f030c764.zip |
-rw-r--r-- | minzip/Zip.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/minzip/Zip.c b/minzip/Zip.c index bdb565c64..38f939fb2 100644 --- a/minzip/Zip.c +++ b/minzip/Zip.c @@ -509,9 +509,6 @@ static bool processDeflatedEntry(const ZipArchive *pArchive, unsigned char procBuf[32 * 1024]; z_stream zstream; int zerr; - long compRemaining; - - compRemaining = pEntry->compLen; /* * Initialize the zlib stream. @@ -759,7 +756,7 @@ static const char *targetEntryPath(MzPathHelper *helper, ZipEntry *pEntry) */ needLen = helper->targetDirLen + 1 + pEntry->fileNameLen - helper->zipDirLen + 1; - if (needLen > helper->bufLen) { + if (firstTime || needLen > helper->bufLen) { char *newBuf; needLen *= 2; |