Skip to content

Commit 9e7e5ca

Browse files
committed
zlib: wrap remaining calls to direct inflate/inflateEnd
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 <[email protected]>
1 parent 1a507fc commit 9e7e5ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

http-backend.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ static void inflate_request(const char *prog_name, int out)
296296
stream.next_out = out_buf;
297297
stream.avail_out = sizeof(out_buf);
298298

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

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

313313
done:
314-
inflateEnd(&stream);
314+
git_inflate_end(&stream);
315315
close(out);
316316
}
317317

0 commit comments

Comments
 (0)