diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-03-18 00:01:26 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-03-18 00:01:26 +0100 |
commit | 6902c4da5855cead535b280a1734771a6fac90e4 (patch) | |
tree | 4466a681a64bdb27dd39808a380d24ddd28c888d /bulk-checkin.c | |
parent | Sync with 2.3.3 (diff) | |
parent | zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw} (diff) | |
download | git-6902c4da5855cead535b280a1734771a6fac90e4.tar.xz git-6902c4da5855cead535b280a1734771a6fac90e4.zip |
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 'bulk-checkin.c')
-rw-r--r-- | bulk-checkin.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bulk-checkin.c b/bulk-checkin.c index 0c4b8a7cad..8d157eba45 100644 --- a/bulk-checkin.c +++ b/bulk-checkin.c @@ -105,7 +105,6 @@ static int stream_to_pack(struct bulk_checkin_state *state, int write_object = (flags & HASH_WRITE_OBJECT); off_t offset = 0; - memset(&s, 0, sizeof(s)); git_deflate_init(&s, pack_compression_level); hdrlen = encode_in_pack_object_header(type, size, obuf); |