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 /fast-import.c | |
parent | Merge branch 'ak/git-done-help-cleanup' into maint (diff) | |
parent | zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw} (diff) | |
download | tgif-a393c6bfd95e51ced65984de2a83a11490c4cfce.tar.xz |
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 '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 aac2c24f74..77fb2ff368 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); |