Merge branch 'rs/deflate-init-cleanup'
Code simplification.
* rs/deflate-init-cleanup:
zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw}
This commit is contained in:
@ -125,7 +125,6 @@ static unsigned long do_compress(void **pptr, unsigned long size)
|
||||
void *in, *out;
|
||||
unsigned long maxsize;
|
||||
|
||||
memset(&stream, 0, sizeof(stream));
|
||||
git_deflate_init(&stream, pack_compression_level);
|
||||
maxsize = git_deflate_bound(&stream, size);
|
||||
|
||||
@ -153,7 +152,6 @@ static unsigned long write_large_blob_data(struct git_istream *st, struct sha1fi
|
||||
unsigned char obuf[1024 * 16];
|
||||
unsigned long olen = 0;
|
||||
|
||||
memset(&stream, 0, sizeof(stream));
|
||||
git_deflate_init(&stream, pack_compression_level);
|
||||
|
||||
for (;;) {
|
||||
|
||||
Reference in New Issue
Block a user