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