CHANGES
上传用户:zswatin
上传日期:2007-01-06
资源大小:440k
文件大小:1k
源码类别:

压缩解压

开发平台:

C/C++

  1. 0.9.0
  2. ~~~~~
  3. First version.
  4. 0.9.0a
  5. ~~~~~~
  6. Removed 'ranlib' from Makefile, since most modern Unix-es 
  7. don't need it, or even know about it.
  8. 0.9.0b
  9. ~~~~~~
  10. Fixed a problem with error reporting in bzip2.c.  This does not effect
  11. the library in any way.  Problem is: versions 0.9.0 and 0.9.0a (of the
  12. program proper) compress and decompress correctly, but give misleading
  13. error messages (internal panics) when an I/O error occurs, instead of
  14. reporting the problem correctly.  This shouldn't give any data loss
  15. (as far as I can see), but is confusing.
  16. Made the inline declarations disappear for non-GCC compilers.
  17. 0.9.0c
  18. ~~~~~~
  19. Fixed some problems in the library pertaining to some boundary cases.
  20. This makes the library behave more correctly in those situations.  The
  21. fixes apply only to features (calls and parameters) not used by
  22. bzip2.c, so the non-fixedness of them in previous versions has no
  23. effect on reliability of bzip2.c.
  24. In bzlib.c:
  25.    * made zero-length BZ_FLUSH work correctly in bzCompress().
  26.    * fixed bzWrite/bzRead to ignore zero-length requests.
  27.    * fixed bzread to correctly handle read requests after EOF.
  28.    * wrong parameter order in call to bzDecompressInit in
  29.      bzBuffToBuffDecompress.  Fixed.
  30. In compress.c:
  31.    * changed setting of nGroups in sendMTFValues() so as to 
  32.      do a bit better on small files.  This _does_ effect
  33.      bzip2.c.