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 /diff.c | |
parent | a4f287e5aa5cffec32bdc94042be58d160fd851e (diff) | |
parent | 9a6f1287fb69c46c7895f987ffea558b13ae79d1 (diff) | |
download | git-a393c6bfd95e51ced65984de2a83a11490c4cfce.tar.gz |
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 'diff.c')
-rw-r--r-- | diff.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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); |