summaryrefslogtreecommitdiff
path: root/zlib
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-07-07 21:14:29 +0000
committerWayne Davison <wayned@samba.org>2005-07-07 21:14:29 +0000
commitb5be9e6c5f9feba4cf55feba83cee86039a37cea (patch)
tree55d5cb71722271982ad3c049a8dbf5614819219c /zlib
parent1e1cf689348c43e24e1950a0bd25e691d85277ca (diff)
downloadrsync-b5be9e6c5f9feba4cf55feba83cee86039a37cea.tar.gz
Fix latest zlib security exploit (CAN-2005-2096).
Diffstat (limited to 'zlib')
-rw-r--r--zlib/inftrees.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zlib/inftrees.c b/zlib/inftrees.c
index 8a896b28..509461d9 100644
--- a/zlib/inftrees.c
+++ b/zlib/inftrees.c
@@ -134,7 +134,7 @@ unsigned short FAR *work;
left -= count[len];
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 */
/* generate offsets into symbol table for each length for sorting */