1. 29 4月, 2013 5 次提交
  2. 14 4月, 2013 7 次提交
  3. 13 4月, 2013 1 次提交
  4. 25 3月, 2013 7 次提交
  5. 24 3月, 2013 4 次提交
  6. 23 3月, 2013 2 次提交
  7. 24 2月, 2013 12 次提交
  8. 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
  9. 22 1月, 2013 1 次提交