diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:23:01 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:23:01 -0700 |
commit | b97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d (patch) | |
tree | 2a9609068ca980db627bceb3f5a48638eaad1c13 /trees.c | |
parent | f81ba93d4a7e43fccf4730e5e7404ee765a76e3e (diff) | |
download | zlib-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | ||