summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Correct incorrect inputs provided to the CRC functions.Mark Adler2022-03-301-4/+4
* Fix compile with Windows 10 SDK. (gvollant)Mark Adler2022-03-281-0/+5
* Fix configure issue that discarded provided CC definition.Mark Adler2022-03-281-0/+3
* Silence some warnings from Visual Studio C.Mark Adler2022-03-282-5/+5
* Change version number on develop branch to 1.2.12.1.Mark Adler2022-03-2724-48/+51
* zlib 1.2.12v1.2.12Mark Adler2022-03-2743-124/+218
* Fix crc32.c to compile local functions only if used.Mark Adler2022-03-271-62/+64
* Check for cc masquerading as gcc or clang in configure.Mark Adler2022-03-271-2/+8
* Remove destructive aspects of make distclean.Mark Adler2022-03-271-3/+1
* Separate out address sanitizing from warnings in configure.Mark Adler2022-03-271-2/+7
* Eliminate use of ULL constants.Mark Adler2022-03-271-3/+3
* Add fallthrough comments for gcc.Mark Adler2022-03-272-0/+24
* Clean up minizip to reduce warnings for testing.Mark Adler2022-01-019-87/+96
* Fix unztell64() in minizip to work past 4GB. (Daniël Hörchner)Mark Adler2022-01-011-0/+3
* minizip warning fix if MAXU32 already defined. (gvollant)Mark Adler2021-12-311-3/+5
* Replace black/white with allow/block. (theresa-m)Mark Adler2021-12-312-15/+15
* Fix indentation in minizip's zip.c.Mark Adler2021-07-081-2/+2
* Improve portability of contrib/minizip.Mark Adler2021-02-104-10/+21
* Correct typo in blast.c.Mark Adler2021-01-171-1/+1
* Change macro name in inflate.c to avoid collision in VxWorks.Mark Adler2020-09-171-4/+4
* Clarify gz* function interfaces, referring to parameter names.Mark Adler2020-08-311-77/+76
* Fix error in comment on the polynomial representation of a byte.Mark Adler2019-07-091-1/+1
* Fix memory leak on error in gzlog.c.Mark Adler2019-05-251-2/+4
* Avoid adding empty gzip member after gzflush with Z_FINISH.Mark Adler2019-04-133-1/+13
* Explicitly note that the 32-bit check values are 32 bits.Mark Adler2019-04-051-5/+7
* Use ARM crc32 instructions if the ARM architecture has them.Mark Adler2019-02-171-3/+7
* Add use of the ARMv8 crc32 instructions when requested.Mark Adler2019-02-171-0/+114
* Correct comment in crc32.c.Mark Adler2019-02-031-1/+2
* Don't bother computing check value after successful inflateSync().Mark Adler2019-01-023-8/+14
* Use atomic test and set, if available, for dynamic CRC tables.Mark Adler2018-12-261-42/+112
* Speed up software CRC-32 computation by a factor of 1.5 to 3.Mark Adler2018-12-266-1096/+10209
* Add crc32_combine_gen() and crc32_combine_op() for fast combines.Mark Adler2018-11-042-0/+97
* Add tables for crc32_combine(), to speed it up by a factor of 200.Mark Adler2018-11-032-92/+396
* Fix the zran.c example to work on a multiple-member gzip file.Mark Adler2018-10-143-93/+204
* Add gznorm.c example, which normalizes gzip files.Mark Adler2018-10-072-0/+474
* Show all the codes for the maximum tables size in enough.c.Mark Adler2018-08-051-160/+191
* Clarify that prefix codes are counted in enough.c.Mark Adler2018-08-051-15/+15
* Use inline function instead of macro for index in enough.c.Mark Adler2018-08-051-4/+8
* Clean up code style in enough.c, update version.Mark Adler2018-08-011-211/+202
* Use a macro for the printf format of big_t in enough.c.Mark Adler2018-08-011-7/+3
* Use a structure to make globals in enough.c evident.Mark Adler2018-08-011-86/+89
* Assure that the number of bits for deflatePrime() is valid.Mark Adler2018-04-191-1/+2
* Fix a bug that can crash deflate on some input when using Z_FIXED.Mark Adler2018-04-193-70/+79
* Correct the initialization requirements for deflateInit2().Mark Adler2018-01-311-2/+1
* Emphasize the need to continue decompressing gzip members.Mark Adler2018-01-081-3/+5
* Add legal disclaimer to README.Mark Adler2017-10-121-1/+4
* Fix deflateEnd() to not report an error at start of raw deflate.Mark Adler2017-10-121-1/+3
* Remove old assembler code in which bugs have manifested.Mark Adler2017-10-1218-6172/+0
* Make the names in functions declarations identical to definitions.Mark Adler2017-10-123-6/+6
* Avoid an undefined behavior of memcpy() in _tr_stored_block().Mark Adler2017-10-121-1/+2