Fixed warning

This commit is contained in:
Robert Osfield 2008-12-19 16:59:10 +00:00
parent df0f01c828
commit 767096631a

View File

@ -252,7 +252,7 @@ bool ReaderWriterGZ::read(std::istream& fin, std::string& destination) const
15 + 32 // autodected zlib or gzip header
);
if (ret != Z_OK)
return ret;
return false;
/* decompress until deflate stream ends or end of file */
do {