Commit 32b9c5bb authored by Felix Paul Kühne's avatar Felix Paul Kühne

unzip: fix compilation warning

parent afea01e6
...@@ -1244,7 +1244,7 @@ extern int ZEXPORT unzReadCurrentFile (file, buf, len) ...@@ -1244,7 +1244,7 @@ extern int ZEXPORT unzReadCurrentFile (file, buf, len)
return UNZ_PARAMERROR; return UNZ_PARAMERROR;
if ((pfile_in_zip_read_info->read_buffer == NULL)) if (pfile_in_zip_read_info->read_buffer == NULL)
return UNZ_END_OF_LIST_OF_FILE; return UNZ_END_OF_LIST_OF_FILE;
if (len==0) if (len==0)
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment