Commit b1b37094 authored by unknown's avatar unknown

Apply security patch to bundled zlib for CAN-2005-2096. (Bug #11844)


zlib/inftrees.c:
  Apply security patch for CAN-2005-2096
parent 1f58b8f9
...@@ -134,7 +134,7 @@ unsigned short FAR *work; ...@@ -134,7 +134,7 @@ unsigned short FAR *work;
left -= count[len]; left -= count[len];
if (left < 0) return -1; /* over-subscribed */ if (left < 0) return -1; /* over-subscribed */
} }
if (left > 0 && (type == CODES || (codes - count[0] != 1))) if (left > 0 && (type == CODES || max != 1))
return -1; /* incomplete set */ return -1; /* incomplete set */
/* generate offsets into symbol table for each length for sorting */ /* generate offsets into symbol table for each length for sorting */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment