Open GoogleCodeExporter opened 8 years ago
line 1929 is `TDEFL_RLE_ZERO_CODE_SIZE` and 964 is `crcu32 = ~crcu32; while
(buf_len--) { mz_uint8 b = *ptr++; crcu32 = (crcu32 >> 4) ^ s_crc32[(crcu32 &
0xF) ^ (b & 0xF)]; crcu32 = (crcu32 >> 4) ^ s_crc32[(crcu32 & 0xF) ^ (b >> 4)];
}`
Original comment by d...@dbsgeo.com
on 8 Jan 2013 at 2:06
Thanks for the report! I'm compiling with v3.3 - I'll amp up the clang warnings
(like I do at work) and see what comes out. I couldn't do this on the v1.15
release, but I'll get to this in the next update.
Original comment by richge...@gmail.com
on 13 Oct 2013 at 5:32
Okay, thanks! I'll also add that I've been compiling miniz as cpp and to
compile as cpp11 I needed this tiny tweak:
https://github.com/mapnik/mapnik/commit/4ee91a4a25a79c380c5b6eb27cc2e7baf8739e75
#diff-40ee208975f5b7bdf7ef7db21c732300
Original comment by d...@mapbox.com
on 14 Oct 2013 at 6:47
Original issue reported on code.google.com by
d...@dbsgeo.com
on 8 Jan 2013 at 2:04