1. 29 4月, 2013 1 次提交
  2. 14 4月, 2013 1 次提交
  3. 13 4月, 2013 1 次提交
  4. 25 3月, 2013 1 次提交
  5. 19 2月, 2013 1 次提交
    • M
      Fix serious but very rare decompression bug in inftrees.c. · 51370f36
      Mark Adler 提交于
      inftrees.c compared the number of used table entries to the maximum
      allowed value using >= instead of >.  This patch fixes those to use
      >.  The bug was discovered by Ignat Kolesnichenko of Yandex LC
      where they have run petabytes of data through zlib.  Triggering the
      bug is apparently very rare, seeing as how it has been out there in
      the wild for almost three years before being discovered.  The bug
      is instantiated only if the exact maximum number of decoding table
      entries, ENOUGH_DISTS or ENOUGH_LENS is used by the block being
      decoded, resulting in the false positive of overflowing the table.
      51370f36
  6. 03 5月, 2012 1 次提交
  7. 13 2月, 2012 1 次提交
  8. 30 1月, 2012 1 次提交
  9. 17 1月, 2012 1 次提交
  10. 19 12月, 2011 1 次提交
  11. 28 11月, 2011 1 次提交
    • M
      Simplify incomplete code table filling in inflate_table(). · 383d2cda
      Mark Adler 提交于
      Due to earlier changes in the error checking in inflate_table(), the
      code to fill in a table for an incomplete code handled cases that can
      never actually occur.  This simplifies that code to handle the only
      possible case, which is a single empty table entry for a code with
      a single symbol with a length of one bit.
      383d2cda
  12. 12 9月, 2011 2 次提交
  13. 10 9月, 2011 27 次提交