1. 08 10月, 2011 1 次提交
    • M
      Add undocumented inflateResetKeep() function for CAB file decoding. · 77b47d55
      Mark Adler 提交于
      The Microsoft CAB file format compresses each block with completed
      deflate streams that depend on the sliding window history of the
      previous block in order to decode.  inflateResetKeep() does what
      inflateReset() does, except the sliding window history from the
      previous inflate operation is retained.
      77b47d55
  2. 07 10月, 2011 1 次提交
    • M
      Add a ./config --solo option to make zlib subset with no libary use · f442c1e8
      Mark Adler 提交于
      A common request has been the ability to compile zlib to require no
      other libraries.  This --solo option provides that ability.  The price
      is that the gz*, compress*, and uncompress functions are eliminated,
      and that the user must provide memory allocation and free routines to
      deflate and inflate when initializing.
      f442c1e8
  3. 03 10月, 2011 4 次提交
  4. 01 10月, 2011 1 次提交
  5. 27 9月, 2011 1 次提交
  6. 25 9月, 2011 1 次提交
    • M
      Change gzread() and related to ignore junk after gzip streams. · a9ae24b6
      Mark Adler 提交于
      Previously the new gz* functions (introduced in 1.2.4) would read and
      return raw data after the last gzip stream.  This is inconsistent with
      the behavior of gzip and the previous versions of zlib.  Now when one
      or more gzip streams have been decoded from the file, which is then
      followed by data that is not a gzip stream (as detemined by not finding
      the magic header), then that subsequent trailing garbage is ignored,
      and no error is returned.
      a9ae24b6
  7. 12 9月, 2011 2 次提交
  8. 10 9月, 2011 29 次提交