diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2013-03-24 22:46:40 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2013-03-24 22:47:59 -0700 |
commit | 0b166094092efa2b92200cbb67f390e86c181ab4 (patch) | |
tree | 32561580c6684415ddf702b9c956d6c704fb19d2 /ChangeLog | |
parent | f81b79c55998a0b7551c129ac379df5839d0949b (diff) | |
download | zlib-0b166094092efa2b92200cbb67f390e86c181ab4.tar.gz zlib-0b166094092efa2b92200cbb67f390e86c181ab4.tar.bz2 zlib-0b166094092efa2b92200cbb67f390e86c181ab4.zip |
zlib 1.2.7.1v1.2.7.1
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 49 |
1 files changed, 47 insertions, 2 deletions
@@ -1,8 +1,53 @@ | |||
1 | 1 | ||
2 | ChangeLog file for zlib | 2 | ChangeLog file for zlib |
3 | 3 | ||
4 | Changes in 1.2.7.1 (xx May 2012) | 4 | Changes in 1.2.7.1 (24 Mar 2013) |
5 | - | 5 | - Replace use of unsafe string functions with snprintf if available |
6 | - Avoid including stddef.h on Windows for Z_SOLO compile [Niessink] | ||
7 | - Fix gzgetc undefine when Z_PREFIX set [Turk] | ||
8 | - Eliminate use of mktemp in Makefile (not always available) | ||
9 | - Fix bug in 'F' mode for gzopen() | ||
10 | - Add inflateGetDictionary() function | ||
11 | - Correct comment in deflate.h | ||
12 | - Use _snprintf for snprintf in Microsoft C | ||
13 | - On Darwin, only use /usr/bin/libtool if libtool is not Apple | ||
14 | - Delete "--version" file if created by "ar --version" [Richard G.] | ||
15 | - Fix configure check for veracity of compiler error return codes | ||
16 | - Fix CMake compilation of static lib for MSVC2010 x64 | ||
17 | - Remove unused variable in infback9.c | ||
18 | - Fix argument checks in gzlog_compress() and gzlog_write() | ||
19 | - Clean up the usage of z_const and respect const usage within zlib | ||
20 | - Clean up examples/gzlog.[ch] comparisons of different types | ||
21 | - Avoid shift equal to bits in type (caused endless loop) | ||
22 | - Fix unintialized value bug in gzputc() introduced by const patches | ||
23 | - Fix memory allocation error in examples/zran.c [Nor] | ||
24 | - Fix bug where gzopen(), gzclose() would write an empty file | ||
25 | - Fix bug in gzclose() when gzwrite() runs out of memory | ||
26 | - Check for input buffer malloc failure in examples/gzappend.c | ||
27 | - Add note to contrib/blast to use binary mode in stdio | ||
28 | - Fix comparisons of differently signed integers in contrib/blast | ||
29 | - Check for invalid code length codes in contrib/puff | ||
30 | - Fix serious but very rare decompression bug in inftrees.c | ||
31 | - Update inflateBack() comments, since inflate() can be faster | ||
32 | - Use underscored I/O function names for WINAPI_FAMILY | ||
33 | - Add _tr_flush_bits to the external symbols prefixed by --zprefix | ||
34 | - Add contrib/vstudio/vc10 pre-build step for static only | ||
35 | - Quote --version-script argument in CMakeLists.txt | ||
36 | - Don't specify --version-script on Apple platforms in CMakeLists.txt | ||
37 | - Fix casting error in contrib/testzlib/testzlib.c | ||
38 | - Fix types in contrib/minizip to match result of get_crc_table() | ||
39 | - Simplify contrib/vstudio/vc10 with 'd' suffix | ||
40 | - Add TOP support to win32/Makefile.msc | ||
41 | - Suport i686 and amd64 assembler builds in CMakeLists.txt | ||
42 | - Fix typos in the use of _LARGEFILE64_SOURCE in zconf.h | ||
43 | - Add vc11 and vc12 build files to contrib/vstudio | ||
44 | - Add gzvprintf() as an undocumented function in zlib | ||
45 | - Fix configure for Sun shell | ||
46 | - Remove runtime check in configure for four-byte integer type | ||
47 | - Add casts and consts to ease user conversion to C++ | ||
48 | - Add man pages for minizip and miniunzip | ||
49 | - In Makefile uninstall, don't rm if preceding cd fails | ||
50 | - Do not return Z_BUF_ERROR if deflateParam() has nothing to write | ||
6 | 51 | ||
7 | Changes in 1.2.7 (2 May 2012) | 52 | Changes in 1.2.7 (2 May 2012) |
8 | - Replace use of memmove() with a simple copy for portability | 53 | - Replace use of memmove() with a simple copy for portability |