diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-03-23 11:23:37 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-03-23 11:23:38 -0700 |
commit | a393c6bfd95e51ced65984de2a83a11490c4cfce (patch) | |
tree | a63f574f73cf1b0a359ffd7378daf628f9839d8e /http-push.c | |
parent | Merge branch 'ak/git-done-help-cleanup' into maint (diff) | |
parent | zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw} (diff) | |
download | tgif-a393c6bfd95e51ced65984de2a83a11490c4cfce.tar.xz |
Merge branch 'rs/deflate-init-cleanup' into maint
Code simplification.
* rs/deflate-init-cleanup:
zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw}
Diffstat (limited to 'http-push.c')
-rw-r--r-- | http-push.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/http-push.c b/http-push.c index 0beb7ab67f..bfb1c9605b 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); |