Nick Richard
Results
2
comments of
Nick Richard
I reproduced this error as well, but the fix may also require changing ``` static const size_t ZLIB_CHUNK=263144; ``` to ``` static const size_t ZLIB_CHUNK=65536; ``` because `uInt` could only...
This is a bit beyond my knowledge of zlib, but maybe there are performance implications with `ZLIB_CHUNK` sizes? It seems like the only reason it's `size_t` is to match the...