summaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-03-23 18:23:37 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-03-23 18:23:38 (GMT)
commita393c6bfd95e51ced65984de2a83a11490c4cfce (patch)
treea63f574f73cf1b0a359ffd7378daf628f9839d8e /sha1_file.c
parenta4f287e5aa5cffec32bdc94042be58d160fd851e (diff)
parent9a6f1287fb69c46c7895f987ffea558b13ae79d1 (diff)
downloadgit-a393c6bfd95e51ced65984de2a83a11490c4cfce.zip
git-a393c6bfd95e51ced65984de2a83a11490c4cfce.tar.gz
git-a393c6bfd95e51ced65984de2a83a11490c4cfce.tar.bz2
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 'sha1_file.c')
-rw-r--r--sha1_file.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c
index 69a60ec..88f06ba 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -2943,7 +2943,6 @@ static int write_loose_object(const unsigned char *sha1, char *hdr, int hdrlen,
}
/* Set it up */
- memset(&stream, 0, sizeof(stream));
git_deflate_init(&stream, zlib_compression_level);
stream.next_out = compressed;
stream.avail_out = sizeof(compressed);