Add assertions to fill_window() in deflate.c to match comments.

This commit is contained in:
Mark Adler 2011-09-22 23:55:31 -07:00
parent 5cf0930ba5
commit 1250ac745d

View File

@ -1322,6 +1322,8 @@ local void fill_window(s)
unsigned more; /* Amount of free space at the end of the window. */
uInt wsize = s->w_size;
Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
do {
more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
@ -1439,6 +1441,9 @@ local void fill_window(s)
s->high_water += init;
}
}
Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
"not enough room for search");
}
/* ===========================================================================