diff options
-rw-r--r-- | deflate_medium.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deflate_medium.c b/deflate_medium.c index ce6bd97..4beada8 100644 --- a/deflate_medium.c +++ b/deflate_medium.c @@ -174,7 +174,7 @@ block_state deflate_medium(deflate_state *s, int flush) memset(&next_match, 0, sizeof(struct match)); for (;;) { - IPos hash_head; /* head of the hash chain */ + IPos hash_head = 0; /* head of the hash chain */ int bflush; /* set if current block must be flushed */ /* Make sure that we always have enough lookahead, except |