aboutsummaryrefslogtreecommitdiff
path: root/inflate.c
diff options
context:
space:
mode:
Diffstat (limited to 'inflate.c')
-rw-r--r--inflate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inflate.c b/inflate.c
index e2fa6bb..4feac09 100644
--- a/inflate.c
+++ b/inflate.c
@@ -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);