zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw}
Clear the git_zstream variable at the start of git_deflate_init() etc. so that callers don't have to do that. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
282616c72d
commit
9a6f1287fb
@ -104,7 +104,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);
|
||||
|
Reference in New Issue
Block a user