Simplify gzseek() now that raw after gzip is ignored.

This commit is contained in:
Mark Adler
2011-09-26 18:34:07 -07:00
parent 50e440f081
commit 8e0d212910
3 changed files with 4 additions and 6 deletions

View File

@@ -144,10 +144,9 @@ local int gz_look(state)
return 0;
}
/* doing raw i/o, save start of raw data for seeking, copy any leftover
input to output -- this assumes that the output buffer is larger than
the input buffer, which also assures space for gzungetc() */
state->raw = state->pos;
/* doing raw i/o, copy any leftover input to output -- this assumes that
the output buffer is larger than the input buffer, which also assures
space for gzungetc() */
state->next = state->out;
if (strm->avail_in) {
memcpy(state->next, strm->next_in, strm->avail_in);