aboutsummaryrefslogtreecommitdiff
path: root/trees.c
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:23:01 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:23:01 -0700
commitb97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d (patch)
tree2a9609068ca980db627bceb3f5a48638eaad1c13 /trees.c
parentf81ba93d4a7e43fccf4730e5e7404ee765a76e3e (diff)
downloadzlib-b97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d.tar.gz
zlib-b97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d.tar.bz2
zlib-b97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d.zip
zlib 1.2.0.7v1.2.0.7
Diffstat (limited to 'trees.c')
-rw-r--r--trees.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/trees.c b/trees.c
index 5f6d4af..bb09554 100644
--- a/trees.c
+++ b/trees.c
@@ -1107,7 +1107,8 @@ local void compress_block(s, ltree, dtree)
1107 } /* literal or match pair ? */ 1107 } /* literal or match pair ? */
1108 1108
1109 /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */ 1109 /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
1110 Assert(s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow"); 1110 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
1111 "pendingBuf overflow");
1111 1112
1112 } while (lx < s->last_lit); 1113 } while (lx < s->last_lit);
1113 1114