You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we miss the state->back = -1 in our code. no idea when that is useful, but probably a bug.
/* use inflate_fast() if we have enough input and output */
if (have >= INFLATE_FAST_MIN_HAVE && left >= INFLATE_FAST_MIN_LEFT) {
RESTORE();
functable.inflate_fast(strm, out);
LOAD();
if (state->mode == TYPE)
state->back = -1;
break;
}
state->back = 0;
The text was updated successfully, but these errors were encountered:
we miss the
state->back = -1
in our code. no idea when that is useful, but probably a bug.The text was updated successfully, but these errors were encountered: