Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Do not use _lseeki64 under Borland C++ [Truta]. | Mark Adler | 2011-12-18 | 1 | -1/+1 |
| | |||||
* | Fix gzeof() to behave just like feof() when read is not past end of file. | Mark Adler | 2011-12-11 | 1 | -3/+6 |
| | | | | | | | | Before, gzeof() would return true (accurately) when the last read request went just up to the end of the uncompressed data. In the analogous case, feof() would return false, only returning true when a read request goes past the end of the file. This patch corrects gzeof() to behave in the same way as feof(), as noted in the zlib.h documentation. | ||||
* | Add a transparent write mode to gzopen() when 'T' is in the mode. | Mark Adler | 2011-10-02 | 1 | -1/+12 |
| | |||||
* | Always add large file support for windows | Tor Lillqvist | 2011-10-01 | 1 | -0/+4 |
| | |||||
* | Update copyright dates on gz* source files. | Mark Adler | 2011-09-30 | 1 | -1/+1 |
| | |||||
* | Change gzgetc() to a macro for speed (~40% speedup in testing). | Mark Adler | 2011-09-26 | 1 | -17/+21 |
| | |||||
* | Simplify gzseek() now that raw after gzip is ignored. | Mark Adler | 2011-09-26 | 1 | -1/+1 |
| | |||||
* | Allow gzrewind() and gzseek() after a premature end-of-file. | Mark Adler | 2011-09-26 | 1 | -2/+3 |
| | |||||
* | Allow gzread() and related to continue after gzclearerr(). | Mark Adler | 2011-09-26 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | Before this fix, gzread() would lose data if a premature end of file was encountered. This prevented gzread() from being used on a file that was being written concurrently. Now gzread() returns all of the data it has available before indicating a premature end of file. This also changes the error returned on a premature end of file from Z_DATA_ERROR to Z_BUF_ERROR. This allows the user to determine if the error is recoverable, which it is if Z_BUF_ERROR is returned. If a Z_DATA_ERROR is returned, then the error is not recoverable. This patch replaces the functionality of a previous patch that fixed reading through an empty gzip stream in a concatenation of gzip streams. To implement this fix, a noticeable rewrite of gzread.c was needed. The patch has the added advantage of using inflate's gzip processing instead of replicating the functionality in gzread.c. This makes the gz code a little simpler. | ||||
* | zlib 1.2.5.1v1.2.5.1 | Mark Adler | 2011-09-11 | 1 | -0/+4 |
| | |||||
* | zlib 1.2.4.5v1.2.4.5 | Mark Adler | 2011-09-09 | 1 | -3/+3 |
| | |||||
* | zlib 1.2.4.3v1.2.4.3 | Mark Adler | 2011-09-09 | 1 | -1/+1 |
| | |||||
* | zlib 1.2.4.2v1.2.4.2 | Mark Adler | 2011-09-09 | 1 | -2/+4 |
| | |||||
* | zlib 1.2.4.1v1.2.4.1 | Mark Adler | 2011-09-09 | 1 | -5/+5 |
| | |||||
* | zlib 1.2.4-pre1v1.2.4-pre1 | Mark Adler | 2011-09-09 | 1 | -9/+10 |
| | |||||
* | zlib 1.2.3.9v1.2.3.9 | Mark Adler | 2011-09-09 | 1 | -12/+10 |
| | |||||
* | zlib 1.2.3.8v1.2.3.8 | Mark Adler | 2011-09-09 | 1 | -8/+28 |
| | |||||
* | zlib 1.2.3.7v1.2.3.7 | Mark Adler | 2011-09-09 | 1 | -14/+14 |
| | |||||
* | zlib 1.2.3.6v1.2.3.6 | Mark Adler | 2011-09-09 | 1 | -33/+36 |
| | |||||
* | zlib 1.2.3.5v1.2.3.5 | Mark Adler | 2011-09-09 | 1 | -0/+513 |