diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2012-01-21 11:49:31 -0800 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2012-01-21 11:49:31 -0800 |
commit | 06c0e754ce4dd76d85ad7a703ea63a1424de55be (patch) | |
tree | 733386d28c50e315ce718c939ad4730748b7779e /contrib | |
parent | 9cdb49c96eea175736f6aa6a2b2d0730f4d8d65d (diff) | |
download | zlib-06c0e754ce4dd76d85ad7a703ea63a1424de55be.tar.gz zlib-06c0e754ce4dd76d85ad7a703ea63a1424de55be.tar.bz2 zlib-06c0e754ce4dd76d85ad7a703ea63a1424de55be.zip |
Minor cleanup up contrib/minizip/unzip.c [Vollant].
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/minizip/unzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/minizip/unzip.c b/contrib/minizip/unzip.c index 050014c..affad4b 100644 --- a/contrib/minizip/unzip.c +++ b/contrib/minizip/unzip.c | |||
@@ -1696,7 +1696,7 @@ extern int ZEXPORT unzReadCurrentFile (unzFile file, voidp buf, unsigned len) | |||
1696 | return UNZ_PARAMERROR; | 1696 | return UNZ_PARAMERROR; |
1697 | 1697 | ||
1698 | 1698 | ||
1699 | if ((pfile_in_zip_read_info->read_buffer == NULL)) | 1699 | if (pfile_in_zip_read_info->read_buffer == NULL) |
1700 | return UNZ_END_OF_LIST_OF_FILE; | 1700 | return UNZ_END_OF_LIST_OF_FILE; |
1701 | if (len==0) | 1701 | if (len==0) |
1702 | return 0; | 1702 | return 0; |