diff options
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 | ||