1. 30 1月, 2016 1 次提交
  2. 27 11月, 2015 1 次提交
    • M
      Fix bug that accepted invalid zlib header when windowBits is zero. · 6cef1de7
      Mark Adler 提交于
      When windowBits is zero, the size of the sliding window comes from
      the zlib header.  The allowed values of the four-bit field are
      0..7, but when windowBits is zero, values greater than 7 are
      permitted and acted upon, resulting in large, mostly unused memory
      allocations.  This fix rejects such invalid zlib headers.
      6cef1de7
  3. 05 10月, 2015 1 次提交
  4. 17 9月, 2015 1 次提交
  5. 06 9月, 2015 2 次提交
  6. 16 8月, 2015 2 次提交
  7. 03 8月, 2015 2 次提交
    • M
      Allow building zlib outside of the source directory. · 55d98b4c
      Mark Adler 提交于
      To build, simply run configure from the source directory by
      specifying its path.  That path will be used to find the source
      files.  The source directory will not be touched.  All new and
      modified files will be made in the current directory.  Discovered
      in the process that not all makes understand % or $<, and not all
      compilers understand -include or -I-.  This required a larger
      Makefile.in with explicit dependencies.
      55d98b4c
    • M
      Do not initialize unsigned with -1 in compress.c uncompr.c. · bfcace04
      Mark Adler 提交于
      Sun compiler complained.  Use (unsigned)0 - 1 instead.
      bfcace04
  8. 02 8月, 2015 2 次提交
  9. 29 7月, 2015 7 次提交
  10. 08 7月, 2015 1 次提交
  11. 06 7月, 2015 2 次提交
  12. 27 1月, 2015 1 次提交
  13. 29 12月, 2014 1 次提交
  14. 03 7月, 2014 1 次提交
  15. 26 4月, 2014 3 次提交
  16. 25 4月, 2014 1 次提交
    • M
      Assure that gzoffset() is correct when appending. · 72c70060
      Mark Adler 提交于
      An open() with O_APPEND followed by an lseek() to determine the
      position will return zero for a non-empty file, even though the
      next write will start at the end of the file.  This commit works
      around that by doing an lseek() to the end when appending.
      72c70060
  17. 25 8月, 2013 1 次提交
  18. 04 8月, 2013 1 次提交
  19. 24 5月, 2013 1 次提交
  20. 03 5月, 2013 1 次提交
  21. 29 4月, 2013 7 次提交