aboutsummaryrefslogtreecommitdiff
path: root/old (unfollow)
Commit message (Expand)AuthorFilesLines
2016-12-30No need to check for NULL argument to free().Mark Adler1-4/+2
2016-12-04Add gzfwrite(), duplicating the interface of fwrite().Mark Adler2-40/+112
2016-12-04Add gzfread(), duplicating the interface of fread().Mark Adler2-40/+126
2016-12-04Fix compile option for when z_size_t needs to be a long long.Mark Adler4-1/+7
2016-12-04Create z_size_t and z_ssize_t types.Mark Adler8-17/+144
2016-12-04Don't need to emit an empty fixed block when changing parameters.Mark Adler1-1/+1
2016-12-04Clean up gz* function return values.Mark Adler3-34/+37
2016-12-04Speed up deflation for level 0 (storing).Mark Adler1-78/+215
2016-12-04Assure that deflateParams() will not switch functions mid-block.Mark Adler2-22/+24
2016-12-04Explicitly ignore a return value in gzwrite.c.Mark Adler1-1/+1
2016-12-04Increase verbosity required to warn about bit length overflow.Mark Adler1-2/+2
2016-12-04Add uncompress2() function, which returns the input size used.Mark Adler2-18/+39
2016-12-04Minor edits to the documentation in source file contents.Mark Adler4-93/+109
2016-12-04Fix bugs in creating a very large gzip header.Mark Adler2-169/+191
2016-12-04Add --debug (-d) option to ./configure to define ZLIB_DEBUG.Mark Adler1-0/+6
2016-12-04Use memcpy for stored blocks.Mark Adler1-30/+7
2016-10-30Fix some typos.Mark Adler10-29/+29
2016-10-27Fix bug when level 0 used with Z_HUFFMAN or Z_RLE.Mark Adler1-3/+4
2016-10-26Clean up and comment the use of local for static.Mark Adler4-6/+6
2016-10-25Make a noble effort at setting OS_CODE correctly.Mark Adler1-14/+30
2016-10-24Do a more thorough check of the state for every stream call.Mark Adler3-41/+72
2016-10-24Document the rejection of 256-byte window requests in zlib.h.Mark Adler1-0/+4
2016-10-24Reject a window size of 256 bytes if not using the zlib wrapper.Mark Adler1-1/+1
2016-10-14Avoid obfuscating use of default case in inftrees.c.Mark Adler1-1/+1
2016-10-14Move macro definition in deflate.c to where it is used.Mark Adler1-3/+4
2016-10-14Avoid recursive gzgetc() macro call.Mark Adler1-2/+2
2016-10-14Make globals in examples local to compilation unit.Mark Adler2-4/+4
2016-10-11Add --warn option to ./configure, instead of environment variable.Mark Adler1-1/+3
2016-10-11Clean up type conversions.Mark Adler9-57/+62
2016-10-11Avoid casting an out-of-range value to long.Mark Adler1-1/+1
2016-10-03Note the violation of the strict aliasing rule in crc32.c.Mark Adler1-0/+12
2016-09-28Avoid pre-decrement of pointer in big-endian CRC calculation.Mark Adler1-3/+1
2016-09-21Remove offset pointer optimization in inftrees.c.Mark Adler1-10/+8
2016-09-21Use post-increment only in inffast.c.Mark Adler1-50/+31
2016-09-21Remove dummy structure declarations for old buggy compilers.Mark Adler6-28/+0
2016-09-21Fix typo.Mark Adler1-1/+1
2016-09-20Add option to not compute or check check values.Mark Adler3-13/+34
2016-09-20Correct the size of the inflate state in the comments.Mark Adler1-1/+2
2016-07-10Fix typo in blast.c.Mark Adler1-1/+1
2016-06-17Add configure.log to .gitignore.Mark Adler1-0/+1
2016-04-05Loop on write() calls in gzwrite.c in case of non-blocking I/O.Mark Adler1-11/+16
2016-01-29Fix gzseek() problem on MinGW due to buggy _lseeki64 there.Mark Adler1-1/+1
2015-11-26Fix bug that accepted invalid zlib header when windowBits is zero.Mark Adler1-1/+1
2015-10-04Use a consistent and more modern approach to not use a parameter.Mark Adler1-6/+10
2015-09-16Use UTF-8 for non-ASCII characters in ChangeLog.Mark Adler1-3/+3
2015-09-05Clean up portability for shifts and integer sizes.Mark Adler3-4/+4
2015-09-05Avoid shifts of negative values inflateMark().Mark Adler1-2/+3
2015-08-15Fix typo.Mark Adler1-1/+1
2015-08-15Use const for static tree descriptions in deflate.Mark Adler2-4/+4
2015-08-02Allow building zlib outside of the source directory.Mark Adler2-61/+197