diff options
Diffstat (limited to 'infback.c')
-rw-r--r-- | infback.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* infback.c -- inflate using a call-back interface | 1 | /* infback.c -- inflate using a call-back interface |
2 | * Copyright (C) 1995-2008 Mark Adler | 2 | * Copyright (C) 1995-2009 Mark Adler |
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -55,7 +55,7 @@ int stream_size; | |||
55 | state->wbits = windowBits; | 55 | state->wbits = windowBits; |
56 | state->wsize = 1U << windowBits; | 56 | state->wsize = 1U << windowBits; |
57 | state->window = window; | 57 | state->window = window; |
58 | state->write = 0; | 58 | state->wnext = 0; |
59 | state->whave = 0; | 59 | state->whave = 0; |
60 | return Z_OK; | 60 | return Z_OK; |
61 | } | 61 | } |