diff options
Diffstat (limited to 'inflate.c')
-rw-r--r-- | inflate.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -923,7 +923,7 @@ int ZEXPORT inflate(z_streamp strm, int flush) { | |||
923 | while (state->have < 19) | 923 | while (state->have < 19) |
924 | state->lens[order[state->have++]] = 0; | 924 | state->lens[order[state->have++]] = 0; |
925 | state->next = state->codes; | 925 | state->next = state->codes; |
926 | state->lencode = (const code FAR *)(state->next); | 926 | state->lencode = state->distcode = (const code FAR *)(state->next); |
927 | state->lenbits = 7; | 927 | state->lenbits = 7; |
928 | ret = inflate_table(CODES, state->lens, 19, &(state->next), | 928 | ret = inflate_table(CODES, state->lens, 19, &(state->next), |
929 | &(state->lenbits), state->work); | 929 | &(state->lenbits), state->work); |