<feed xmlns='http://www.w3.org/2005/Atom'>
<title>zlib/test, branch v1.2.13</title>
<subtitle>A mirror of https://github.com/madler/zlib.git
</subtitle>
<id>https://git.lua4.win/zlib/atom?h=v1.2.13</id>
<link rel='self' href='https://git.lua4.win/zlib/atom?h=v1.2.13'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/'/>
<updated>2022-10-01T23:52:35+00:00</updated>
<entry>
<title>Avoid conversion warning in minigzip.c.</title>
<updated>2022-10-01T23:52:35+00:00</updated>
<author>
<name>Mark Adler</name>
<email>fork@madler.net</email>
</author>
<published>2022-10-01T23:52:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=2d6d59e4728a45240c9d238adbeb33032e9eb19d'/>
<id>urn:sha1:2d6d59e4728a45240c9d238adbeb33032e9eb19d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Have build test report library version if it doesn't match zlib.h.</title>
<updated>2022-05-26T15:47:51+00:00</updated>
<author>
<name>Mark Adler</name>
<email>fork@madler.net</email>
</author>
<published>2022-05-26T15:47:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=441a2ac6028aca34f1921b2f4cc469124c9235c7'/>
<id>urn:sha1:441a2ac6028aca34f1921b2f4cc469124c9235c7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Don't bother computing check value after successful inflateSync().</title>
<updated>2019-01-03T04:40:40+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2019-01-03T02:10:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=0d36ec47f310478549c0864f215ab5c0114c49ba'/>
<id>urn:sha1:0d36ec47f310478549c0864f215ab5c0114c49ba</id>
<content type='text'>
inflateSync() is used to skip invalid deflate data, which means
that the check value that was being computed is no longer useful.
This commit turns off the check value computation, and furthermore
allows a successful return if the compressed data terminated in a
graceful manner. This commit also fixes a bug in the case that
inflateSync() is used before a header is ever processed. In that
case, there is no knowledge of a trailer, so the remainder is
treated as raw.
</content>
</entry>
<entry>
<title>zlib 1.2.9</title>
<updated>2017-01-01T07:37:10+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-12-31T19:41:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=2fa463bacfff79181df1a5270fb67cc679a53e71'/>
<id>urn:sha1:2fa463bacfff79181df1a5270fb67cc679a53e71</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Avoid some random compiler warnings on various platforms.</title>
<updated>2016-12-31T07:42:10+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-12-31T06:05:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=8f147c3d12591a811c5438c011d4203bb7fc5260'/>
<id>urn:sha1:8f147c3d12591a811c5438c011d4203bb7fc5260</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Allow minigzip to compile when testing with ./configure --solo.</title>
<updated>2016-12-31T06:04:22+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-12-31T06:04:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=fb26fc427fb5b628e1ee062d08be334c1b8c3bbe'/>
<id>urn:sha1:fb26fc427fb5b628e1ee062d08be334c1b8c3bbe</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use snprintf() for later versions of Microsoft C.</title>
<updated>2016-12-31T01:13:31+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-12-31T01:13:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=79b5c5acf0dff798f3436126b080472ef6b7bd65'/>
<id>urn:sha1:79b5c5acf0dff798f3436126b080472ef6b7bd65</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Create z_size_t and z_ssize_t types.</title>
<updated>2016-12-04T15:48:48+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-12-03T18:27:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=ca50ebd4dfd08dfd7e8c8bb087278e158cd67720'/>
<id>urn:sha1:ca50ebd4dfd08dfd7e8c8bb087278e158cd67720</id>
<content type='text'>
Normally these are set to size_t and ssize_t. But if they do not
exist, then they are set to the smallest integer type that can
contain a pointer. size_t is unsigned and ssize_t is signed.
</content>
</entry>
<entry>
<title>Make globals in examples local to compilation unit.</title>
<updated>2016-10-14T20:10:54+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-10-14T20:10:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=7d6956b6a148465947dbeacef654fecab9b31f55'/>
<id>urn:sha1:7d6956b6a148465947dbeacef654fecab9b31f55</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Avoid use of reallocf() in test/infcover.c.</title>
<updated>2015-07-29T04:55:09+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2015-07-29T04:55:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=0b22337126401ef68ac5cf0308413239a4fb9c83'/>
<id>urn:sha1:0b22337126401ef68ac5cf0308413239a4fb9c83</id>
<content type='text'>
</content>
</entry>
</feed>
