From 9a6f1287fb69c46c7895f987ffea558b13ae79d1 Mon Sep 17 00:00:00 2001 From: René Scharfe Date: Thu, 5 Mar 2015 23:49:46 +0100 Subject: zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw} Clear the git_zstream variable at the start of git_deflate_init() etc. so that callers don't have to do that. Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano --- http-push.c | 1 - 1 file changed, 1 deletion(-) (limited to 'http-push.c') diff --git a/http-push.c b/http-push.c index bc94a3f6ab..8f473b35de 100644 --- a/http-push.c +++ b/http-push.c @@ -365,7 +365,6 @@ static void start_put(struct transfer_request *request) hdrlen = sprintf(hdr, "%s %lu", typename(type), len) + 1; /* Set it up */ - memset(&stream, 0, sizeof(stream)); git_deflate_init(&stream, zlib_compression_level); size = git_deflate_bound(&stream, len + hdrlen); strbuf_init(&request->buffer.buf, size); -- cgit v1.2.3