pfalcon / uzlib

Radically unbloated DEFLATE/zlib/gzip compression/decompression library. Can decompress any gzip/zlib data, and offers simplified compressor which produces gzip-compatible output, while requiring much less resources (and providing less compression ratio of course).
Other
306 stars 83 forks source link

Fixed variable init #3

Closed jwhitelock closed 8 years ago

jwhitelock commented 8 years ago

destRemaining was being set instead of destSize, this caused the destRemaining to be initialized in the following function with destSize which was uninitialized.

pfalcon commented 8 years ago

Thanks, confirmed, updated description to use exact names instead of "next function" and merged.