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 /fast-import.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 'fast-import.c')
-rw-r--r-- | fast-import.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fast-import.c b/fast-import.c index b82fcdd24e..e78ca107b3 100644 --- a/fast-import.c +++ b/fast-import.c @@ -1062,7 +1062,6 @@ static int store_object( } else delta = NULL; - memset(&s, 0, sizeof(s)); git_deflate_init(&s, pack_compression_level); if (delta) { s.next_in = delta; @@ -1090,7 +1089,6 @@ static int store_object( free(delta); delta = NULL; - memset(&s, 0, sizeof(s)); git_deflate_init(&s, pack_compression_level); s.next_in = (void *)dat->buf; s.avail_in = dat->len; @@ -1190,7 +1188,6 @@ static void stream_blob(uintmax_t len, unsigned char *sha1out, uintmax_t mark) crc32_begin(pack_file); - memset(&s, 0, sizeof(s)); git_deflate_init(&s, pack_compression_level); hdrlen = encode_in_pack_object_header(OBJ_BLOB, len, out_buf); |