aboutsummaryrefslogtreecommitdiff
path: root/remote-curl.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-03-17 16:01:26 -0700
committerJunio C Hamano <gitster@pobox.com>2015-03-17 16:01:26 -0700
commit6902c4da5855cead535b280a1734771a6fac90e4 (patch)
tree4466a681a64bdb27dd39808a380d24ddd28c888d /remote-curl.c
parent52cae643c5d49b7fa18a7a4c60c284f9ae2e2c71 (diff)
parent9a6f1287fb69c46c7895f987ffea558b13ae79d1 (diff)
downloadgit-6902c4da5855cead535b280a1734771a6fac90e4.tar.gz
git-6902c4da5855cead535b280a1734771a6fac90e4.tar.xz
Merge branch 'rs/deflate-init-cleanup'
Code simplification. * rs/deflate-init-cleanup: zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw}
Diffstat (limited to 'remote-curl.c')
-rw-r--r--remote-curl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/remote-curl.c b/remote-curl.c
index deb4bfe68..af7b6786d 100644
--- a/remote-curl.c
+++ b/remote-curl.c
@@ -567,7 +567,6 @@ retry:
git_zstream stream;
int ret;
- memset(&stream, 0, sizeof(stream));
git_deflate_init_gzip(&stream, Z_BEST_COMPRESSION);
gzip_size = git_deflate_bound(&stream, rpc->len);
gzip_body = xmalloc(gzip_size);