summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* zlib 1.3.1.2HEADv1.3.1.2developMark Adler2025-12-0840-80/+103
| | | | Interim version for an audit.
* Avoid mixed signedness compare in gzwrite.c.Mark Adler2025-12-081-1/+1
|
* Look for gcov in configure only if coverage was requested.Mark Adler2025-12-081-24/+26
|
* CMake: Repair macOS action.Vollstrecker2025-12-082-4/+28
|
* CMake: Repair Windows action.Vollstrecker2025-12-081-1/+1
|
* Support non-blocking devices in the gz* routines.Mark Adler2025-12-085-116/+276
|
* Update gz*.c copyright dates.Mark Adler2025-12-064-4/+4
|
* Return all available uncompressed data on error in gzread.c.Mark Adler2025-12-063-32/+49
| | | | | | | The error is recorded, and will be detected by the application after all of the uncompressed data has been consumed and then one more call is made to read data. The error is available immediately from gzerror() if the application would like to know earlier.
* Fix indentation in gzread.c.Mark Adler2025-12-061-3/+3
|
* Update links to the RFCs.Mark Adler2025-12-065-11/+11
|
* CMake: Fix typos in test/CMakeLists.txt.Vollstrecker2025-12-061-2/+2
|
* Clarify the use of inflateGetHeader().Mark Adler2025-12-061-14/+16
|
* Remove redundant frees of point list on error in examples/zran.c.Mark Adler2025-12-062-21/+17
| | | | | Also clean out the point list contents when freed, even though the structure itself is freed, in case someone tries to free it again.
* Allow gzflush() to write empty gzip members.Mark Adler2025-12-061-2/+3
| | | | | Before this, a gzflush() with Z_FINISH and no data to write would do nothing. Now it will write an empty gzip member.
* Improve the discrimination between trailing garbage and bad gzip.Mark Adler2025-12-063-30/+37
| | | | | | | | This proceeds to try to decode whatever follows the last gzip member, and concludes that it is acceptable trailing garbage only if it results in a data error without decompressing any data. This commit also reduces the probability of a false-positive gzip header detection.
* Add a "G" option to force gzip, disabling transparency in gzread().Mark Adler2025-12-063-5/+31
| | | | | If the input is not a gzip stream with this option, an error will be returned.
* Fix bug in inflatePrime() for 16-bit ints.Mark Adler2025-05-132-10/+21
| | | | | | Also elaborate on the inflatePrime() error return in zlib.h, and assure that data_type is correct after initialization and a Z_NEED_DICT return.
* Correct Visual Studio readme.txt.skydvr2025-05-131-2/+2
|
* Constrain line lengths in inflate code.Mark Adler2025-05-133-12/+22
|
* Note the use of gzungetc() to run a deferred seek while reading.Mark Adler2025-05-131-0/+5
|
* Note that gzseek() requests are deferred until the next operation.Mark Adler2025-05-131-1/+2
|
* Clarify the use of errnum in gzerror().Mark Adler2025-02-251-3/+4
|
* Have gz_skip() update how far it got for later continuation.Mark Adler2025-02-254-76/+46
| | | | This also simplifies seek processing in general.
* Avoid a fruitless memory copy in gzread.c.Mark Adler2025-02-231-4/+6
|
* Remove some unsightly spaces in zlib.h.Mark Adler2025-02-211-3/+3
|
* Use generated zconf.h in cmake build.Vollstrecker2025-02-183-7/+14
| | | | | This restores the inclusion of the local zconf.h (double quoted) in normal usage.
* Check that HAVE_UNISTD_H and HAVE_STDARG_H are not defined as 0.Mark Adler2025-02-133-6/+6
|
* Do not look for zconf.h in the source directory.Vollstrecker2025-02-131-1/+1
| | | | | Temporary patch for cmake, but too violent. A better solution will need to be found.
* Use zconf.h instead of zconf.h.in for cmake.Mark Adler2025-02-061-2/+2
|
* Repair MinGW cmake build.Vollstrecker2025-02-063-10/+2
|
* Fix Ada bindings on x64.spectralio2025-02-051-1/+2
|
* Restore zconf.h to distribution.Mark Adler2025-02-053-5/+551
|
* Revert previous commit, restoring the memcpy() call.Mark Adler2025-02-021-3/+3
| | | | | The reported issue was due to an error in their test code, not in inflate. This use of memcpy() in inflate is correct.
* Avoid use of memcpy() in inflate when areas can overlap.Mark Adler2025-02-011-3/+3
|
* Update Makefile to not recreate zconf.h and zconf.h.cmakein.Mark Adler2025-01-312-11/+12
| | | | | Both were removed as zconf.h.cmakein is no longer needed, and zconf.h is made from zconf.h.in.
* CMake: Make USE_FILE32API part of the interface.Vollstrecker2025-01-311-12/+8
|
* CMake: Give minizip a suffix on Cygwin as well.Vollstrecker2025-01-312-3/+4
|
* CMake: Disable minizip on Cygwin.Vollstrecker2025-01-311-2/+1
|
* CMake: Correct workflow line continuation.Vollstrecker2025-01-311-1/+1
|
* CMake: Clean up spaces in required versions.Vollstrecker2025-01-318-8/+8
|
* CMake: Correct workflow options to disable bzip2 on Windows.Vollstrecker2025-01-311-4/+2
| | | | Note that Vollstrecker hates yaml.
* CMake: Add the tested version of cmake (3.31).Vollstrecker2025-01-318-8/+8
| | | | Per @ClausKlein suggestion.
* CMake: Do not test with bzip2 on Windows or Cygwin.Vollstrecker2025-01-312-5/+12
|
* CMake: Install bzip2 on Cygwin in workflow.Vollstrecker2025-01-311-0/+1
|
* CMake: Correct runner.os to Linux.Vollstrecker2025-01-311-2/+2
|
* CMake: Switch from make back to ninja.Vollstrecker2025-01-311-3/+5
| | | | Limit to one job.
* CMake: Install missing bzip2 in workflow.Vollstrecker2025-01-311-1/+5
|
* CMake: Add make to Cygwin.Vollstrecker2025-01-311-0/+1
|
* CMake: Re-enable testing with bzip2.Vollstrecker2025-01-312-3/+5
|
* CMake: Change README-cmake to README-cmake.md with formatting.Vollstrecker2025-01-312-76/+83
| | | | Per @ClausKlein suggestion.