Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/diff.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-03-18 02:01:26 +0300
committerJunio C Hamano <gitster@pobox.com>2015-03-18 02:01:26 +0300
commit6902c4da5855cead535b280a1734771a6fac90e4 (patch)
tree4466a681a64bdb27dd39808a380d24ddd28c888d /diff.c
parent52cae643c5d49b7fa18a7a4c60c284f9ae2e2c71 (diff)
parent9a6f1287fb69c46c7895f987ffea558b13ae79d1 (diff)
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 'diff.c')
-rw-r--r--diff.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/diff.c b/diff.c
index abc32c8a7d..7500c55095 100644
--- a/diff.c
+++ b/diff.c
@@ -2093,7 +2093,6 @@ static unsigned char *deflate_it(char *data,
unsigned char *deflated;
git_zstream stream;
- memset(&stream, 0, sizeof(stream));
git_deflate_init(&stream, zlib_compression_level);
bound = git_deflate_bound(&stream, size);
deflated = xmalloc(bound);