Skip to content

Commit

Permalink
zlib: wrap remaining calls to direct inflate/inflateEnd
Browse files Browse the repository at this point in the history
Two callsites in http-backend.c to inflate() and inflateEnd()
were not using git_ prefixed versions.  After this, running

    $ find all objects -print | xargs nm -ugo | grep inflate

shows only zlib.c makes direct calls to zlib for inflate operation,
except for a singlecall to inflateInit2 in http-backend.c

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Jun 10, 2011
1 parent 1a507fc commit 9e7e5ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions http-backend.c
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ static void inflate_request(const char *prog_name, int out)
stream.next_out = out_buf;
stream.avail_out = sizeof(out_buf);

ret = inflate(&stream, Z_NO_FLUSH);
ret = git_inflate(&stream, Z_NO_FLUSH);
if (ret != Z_OK && ret != Z_STREAM_END)
die("zlib error inflating request, result %d", ret);

Expand All @@ -311,7 +311,7 @@ static void inflate_request(const char *prog_name, int out)
}

done:
inflateEnd(&stream);
git_inflate_end(&stream);
close(out);
}

Expand Down

0 comments on commit 9e7e5ca

Please sign in to comment.