diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-03-17 16:01:26 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-03-17 16:01:26 -0700 |
commit | 6902c4da5855cead535b280a1734771a6fac90e4 (patch) | |
tree | 4466a681a64bdb27dd39808a380d24ddd28c888d /diff.c | |
parent | Sync with 2.3.3 (diff) | |
parent | zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw} (diff) | |
download | tgif-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 '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); |