diff --git a/common/zlib/deflate.c b/common/zlib/deflate.c index f63751eed..a44bdb3ab 100644 --- a/common/zlib/deflate.c +++ b/common/zlib/deflate.c @@ -195,9 +195,10 @@ local const config configuration_table[10] = { * Initialize the hash table (avoiding 64K overflow for 16 bit systems). * prev[] will be initialized on the fly. */ -#define CLEAR_HASH(s) \ +#define CLEAR_HASH(s) {\ s->head[s->hash_size-1] = NIL; \ - zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head)); + zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head)); \ +} /* =========================================================================== * Slide the hash table when sliding the window down (could be avoided with 32