1. 03 1月, 2017 1 次提交
  2. 02 1月, 2017 4 次提交
  3. 01 1月, 2017 6 次提交
  4. 31 12月, 2016 10 次提交
  5. 05 12月, 2016 3 次提交
  6. 04 12月, 2016 12 次提交
  7. 30 10月, 2016 1 次提交
  8. 28 10月, 2016 1 次提交
    • M
      Fix bug when level 0 used with Z_HUFFMAN or Z_RLE. · 94575859
      Mark Adler 提交于
      Compression level 0 requests no compression, using only stored
      blocks. When Z_HUFFMAN or Z_RLE was used with level 0 (granted,
      an odd choice, but permitted), the resulting blocks were mostly
      fixed or dynamic. The reason is that deflate_stored() was not
      being called in that case. The compressed data was valid, but it
      was not what the application requested. This commit assures that
      only stored blocks are emitted for compression level 0, regardless
      of the strategy selected.
      94575859
  9. 27 10月, 2016 1 次提交
  10. 26 10月, 2016 1 次提交
    • M
      Make a noble effort at setting OS_CODE correctly. · ce12c5cd
      Mark Adler 提交于
      This updates the OS_CODE determination at compile time to match as
      closely as possible the operating system mappings documented in
      the PKWare APPNOTE.TXT version 6.3.4, section 4.4.2.2. That byte
      in the gzip header is used by nobody for anything, as far as I can
      tell. However we might as well try to set it appropriately.
      ce12c5cd