| Commit message (Expand) | Author | Files | Lines |
2016-10-27 | Fix bug when level 0 used with Z_HUFFMAN or Z_RLE. | Mark Adler | 1 | -3/+4 |
2016-10-26 | Clean up and comment the use of local for static. | Mark Adler | 4 | -6/+6 |
2016-10-25 | Make a noble effort at setting OS_CODE correctly. | Mark Adler | 1 | -14/+30 |
2016-10-24 | Do a more thorough check of the state for every stream call. | Mark Adler | 3 | -41/+72 |
2016-10-24 | Document the rejection of 256-byte window requests in zlib.h. | Mark Adler | 1 | -0/+4 |
2016-10-24 | Reject a window size of 256 bytes if not using the zlib wrapper. | Mark Adler | 1 | -1/+1 |
2016-10-14 | Avoid obfuscating use of default case in inftrees.c. | Mark Adler | 1 | -1/+1 |
2016-10-14 | Move macro definition in deflate.c to where it is used. | Mark Adler | 1 | -3/+4 |
2016-10-14 | Avoid recursive gzgetc() macro call. | Mark Adler | 1 | -2/+2 |
2016-10-14 | Make globals in examples local to compilation unit. | Mark Adler | 2 | -4/+4 |
2016-10-11 | Add --warn option to ./configure, instead of environment variable. | Mark Adler | 1 | -1/+3 |
2016-10-11 | Clean up type conversions. | Mark Adler | 9 | -57/+62 |
2016-10-11 | Avoid casting an out-of-range value to long. | Mark Adler | 1 | -1/+1 |
2016-10-03 | Note the violation of the strict aliasing rule in crc32.c. | Mark Adler | 1 | -0/+12 |
2016-09-28 | Avoid pre-decrement of pointer in big-endian CRC calculation. | Mark Adler | 1 | -3/+1 |
2016-09-21 | Remove offset pointer optimization in inftrees.c. | Mark Adler | 1 | -10/+8 |
2016-09-21 | Use post-increment only in inffast.c. | Mark Adler | 1 | -50/+31 |
2016-09-21 | Remove dummy structure declarations for old buggy compilers. | Mark Adler | 6 | -28/+0 |
2016-09-21 | Fix typo. | Mark Adler | 1 | -1/+1 |
2016-09-20 | Add option to not compute or check check values. | Mark Adler | 3 | -13/+34 |
2016-09-20 | Correct the size of the inflate state in the comments. | Mark Adler | 1 | -1/+2 |
2016-07-10 | Fix typo in blast.c. | Mark Adler | 1 | -1/+1 |
2016-06-17 | Add configure.log to .gitignore. | Mark Adler | 1 | -0/+1 |
2016-04-05 | Loop on write() calls in gzwrite.c in case of non-blocking I/O. | Mark Adler | 1 | -11/+16 |
2016-01-29 | Fix gzseek() problem on MinGW due to buggy _lseeki64 there. | Mark Adler | 1 | -1/+1 |
2015-11-26 | Fix bug that accepted invalid zlib header when windowBits is zero. | Mark Adler | 1 | -1/+1 |
2015-10-04 | Use a consistent and more modern approach to not use a parameter. | Mark Adler | 1 | -6/+10 |
2015-09-16 | Use UTF-8 for non-ASCII characters in ChangeLog. | Mark Adler | 1 | -3/+3 |
2015-09-05 | Clean up portability for shifts and integer sizes. | Mark Adler | 3 | -4/+4 |
2015-09-05 | Avoid shifts of negative values inflateMark(). | Mark Adler | 1 | -2/+3 |
2015-08-15 | Fix typo. | Mark Adler | 1 | -1/+1 |
2015-08-15 | Use const for static tree descriptions in deflate. | Mark Adler | 2 | -4/+4 |
2015-08-02 | Allow building zlib outside of the source directory. | Mark Adler | 2 | -61/+197 |
2015-08-02 | Do not initialize unsigned with -1 in compress.c uncompr.c. | Mark Adler | 2 | -2/+2 |
2015-08-02 | Align deflateParams() and its documentation in zlib.h. | Mark Adler | 2 | -14/+27 |
2015-08-01 | Compile the gzopen_w() function when __CYGWIN__ defined. | Mark Adler | 3 | -5/+9 |
2015-07-28 | Define _POSIX_SOURCE to enable POSIX extensions on some systems. | Mark Adler | 1 | -0/+4 |
2015-07-28 | Clarify deflateReset() documentation. | Mark Adler | 1 | -4/+4 |
2015-07-28 | Avoid uninitialized access by gzclose_w(). | Mark Adler | 2 | -1/+2 |
2015-07-28 | Avoid use of DEBUG macro -- change to ZLIB_DEBUG. | Mark Adler | 14 | -33/+33 |
2015-07-28 | Avoid use of reallocf() in test/infcover.c. | Mark Adler | 1 | -8/+8 |
2015-07-28 | Fix inflateInit2() bug when windowBits is 16 or 32. | Mark Adler | 1 | -0/+2 |
2015-07-28 | Add comment about not using windowBits of 8 for deflate(). | Mark Adler | 1 | -0/+8 |
2015-07-07 | Put license in zlib.3 man page. | Mark Adler | 2 | -9/+27 |
2015-07-05 | Improve speed of gzprintf() in transparent mode. | Mark Adler | 4 | -51/+70 |
2015-07-05 | Avoid left shift of a negative value in flush rank calculation. | Mark Adler | 1 | -1/+1 |
2015-01-26 | Remedy Coverity warning. [Randers-Pehrson] | Mark Adler | 1 | -1/+1 |
2014-12-29 | Add inflateCodesUsed() function for internal use. | Mark Adler | 1 | -0/+9 |
2014-07-02 | Fix bug in test/example.c where error code not saved. | Mark Adler | 1 | -1/+1 |
2014-04-26 | Note in zlib.h that compress() uses Z_DEFAULT_COMPRESSION. | Mark Adler | 1 | -1/+2 |