From: Andrew Tridgell Date: Tue, 16 Dec 1997 18:18:02 +0000 (+0000) Subject: Checker showed that zlib was using a element of its internal state X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/12384c3aff4fb433042cf8fc4f4949d744535531 Checker showed that zlib was using a element of its internal state structure without initialising it. Although it looks harmless I've added a bzero() to make absolutely sure that the code behaves consistently across platforms. --- diff --git a/lib/zlib.c b/lib/zlib.c index c9f7ff5b..9d732bb7 100644 --- a/lib/zlib.c +++ b/lib/zlib.c @@ -600,6 +600,7 @@ int deflateInit2 (strm, level, method, windowBits, memLevel, strategy) } s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); if (s == Z_NULL) return Z_MEM_ERROR; + bzero(s, sizeof(*s)); strm->state = (struct internal_state FAR *)s; s->strm = strm;