aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:06:52 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:06:52 -0700
commit64b2e892035cf6ea98800c54dce0d63730d50272 (patch)
treee3b569f87e413eaef4a13469acfd4224b2a63d3a /ChangeLog
parent4ca984fb447ac57120c394cf2fbba23837ed31c2 (diff)
downloadzlib-64b2e892035cf6ea98800c54dce0d63730d50272.tar.gz
zlib-64b2e892035cf6ea98800c54dce0d63730d50272.tar.bz2
zlib-64b2e892035cf6ea98800c54dce0d63730d50272.zip
zlib 0.9v0.9
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 668d036..54470f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,22 @@
1 ChangeLog file for zlib 1 ChangeLog file for zlib
2 2
3Changes in 0.9 (1 May 95)
4- don't assume that zalloc clears the allocated memory (the TurboC bug
5 was Mark's bug after all :)
6- let again gzread copy uncompressed data unchanged (was working in 0.71)
7- deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented
8- added a test of inflateSync in example.c
9- moved MAX_WBITS to zconf.h because users might want to change that.
10- document explicitly that zalloc(64K) on MSDOS must return a normalized
11 pointer (zero offset)
12- added Makefiles for Microsoft C, Turbo C, Borland C++
13
3Changes in 0.8 (29 April 95) 14Changes in 0.8 (29 April 95)
4- added fast inflate (inffast.c) 15- added fast inflate (inffast.c)
5- deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this 16- deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this
6 is incompatible with previous versions of zlib which returned Z_OK. 17 is incompatible with previous versions of zlib which returned Z_OK.
7- work around a TurboC compiler bug (bad code for b << 0, see infutil.h) 18- work around a TurboC compiler bug (bad code for b << 0, see infutil.h)
19 (actually that was not a compiler bug, see 0.81 above)
8- gzread no longer reads one extra byte in certain cases 20- gzread no longer reads one extra byte in certain cases
9- In gzio destroy(), don't reference a freed structure 21- In gzio destroy(), don't reference a freed structure
10- avoid many warnings for MSDOS 22- avoid many warnings for MSDOS