Skip to content

Commit

Permalink
Merge branch 'rs/deflate-init-cleanup'
Browse files Browse the repository at this point in the history
Code simplification.

* rs/deflate-init-cleanup:
  zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw}
  • Loading branch information
gitster committed Mar 17, 2015
2 parents 52cae64 + 9a6f128 commit 6902c4d
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 13 deletions.
2 changes: 0 additions & 2 deletions archive-zip.c
Expand Up @@ -120,7 +120,6 @@ static void *zlib_deflate_raw(void *data, unsigned long size,
void *buffer;
int result;

memset(&stream, 0, sizeof(stream));
git_deflate_init_raw(&stream, compression_level);
maxsize = git_deflate_bound(&stream, size);
buffer = xmalloc(maxsize);
Expand Down Expand Up @@ -349,7 +348,6 @@ static int write_zip_entry(struct archiver_args *args,
size_t out_len;
unsigned char compressed[STREAM_BUFFER_SIZE * 2];

memset(&zstream, 0, sizeof(zstream));
git_deflate_init_raw(&zstream, args->compression_level);

compressed_size = 0;
Expand Down
1 change: 0 additions & 1 deletion builtin/index-pack.c
Expand Up @@ -1204,7 +1204,6 @@ static int write_compressed(struct sha1file *f, void *in, unsigned int size)
int status;
unsigned char outbuf[4096];

memset(&stream, 0, sizeof(stream));
git_deflate_init(&stream, zlib_compression_level);
stream.next_in = in;
stream.avail_in = size;
Expand Down
2 changes: 0 additions & 2 deletions builtin/pack-objects.c
Expand Up @@ -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);

Expand Down Expand Up @@ -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 (;;) {
Expand Down
1 change: 0 additions & 1 deletion bulk-checkin.c
Expand Up @@ -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);
Expand Down
1 change: 0 additions & 1 deletion diff.c
Expand Up @@ -2093,7 +2093,6 @@ static unsigned char *deflate_it(char *data,
unsigned char *deflated;
git_zstream stream;

memset(&stream, 0, sizeof(stream));
git_deflate_init(&stream, zlib_compression_level);
bound = git_deflate_bound(&stream, size);
deflated = xmalloc(bound);
Expand Down
3 changes: 0 additions & 3 deletions fast-import.c
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down
1 change: 0 additions & 1 deletion http-push.c
Expand Up @@ -365,7 +365,6 @@ static void start_put(struct transfer_request *request)
hdrlen = sprintf(hdr, "%s %lu", typename(type), len) + 1;

/* Set it up */
memset(&stream, 0, sizeof(stream));
git_deflate_init(&stream, zlib_compression_level);
size = git_deflate_bound(&stream, len + hdrlen);
strbuf_init(&request->buffer.buf, size);
Expand Down
1 change: 0 additions & 1 deletion remote-curl.c
Expand Up @@ -567,7 +567,6 @@ static int post_rpc(struct rpc_state *rpc)
git_zstream stream;
int ret;

memset(&stream, 0, sizeof(stream));
git_deflate_init_gzip(&stream, Z_BEST_COMPRESSION);
gzip_size = git_deflate_bound(&stream, rpc->len);
gzip_body = xmalloc(gzip_size);
Expand Down
1 change: 0 additions & 1 deletion sha1_file.c
Expand Up @@ -2943,7 +2943,6 @@ static int write_loose_object(const unsigned char *sha1, char *hdr, int hdrlen,
}

/* Set it up */
memset(&stream, 0, sizeof(stream));
git_deflate_init(&stream, zlib_compression_level);
stream.next_out = compressed;
stream.avail_out = sizeof(compressed);
Expand Down
2 changes: 2 additions & 0 deletions zlib.c
Expand Up @@ -159,6 +159,7 @@ void git_deflate_init(git_zstream *strm, int level)
{
int status;

memset(strm, 0, sizeof(*strm));
zlib_pre_call(strm);
status = deflateInit(&strm->z, level);
zlib_post_call(strm);
Expand All @@ -172,6 +173,7 @@ static void do_git_deflate_init(git_zstream *strm, int level, int windowBits)
{
int status;

memset(strm, 0, sizeof(*strm));
zlib_pre_call(strm);
status = deflateInit2(&strm->z, level,
Z_DEFLATED, windowBits,
Expand Down

0 comments on commit 6902c4d

Please sign in to comment.