MCPcopy Create free account
hub / github.com/git/git / git_inflate_end

Function git_inflate_end

git-zlib.c:119–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117}
118
119void git_inflate_end(git_zstream *strm)
120{
121 int status;
122
123 zlib_pre_call(strm);
124 status = inflateEnd(&strm->z);
125 zlib_post_call(strm, status);
126 if (status == Z_OK)
127 return;
128 error("inflateEnd: %s (%s)", zerr_to_string(status),
129 strm->z.msg ? strm->z.msg : "no message");
130}
131
132int git_inflate(git_zstream *strm, int flush)
133{

Callers 15

read_loose_objectFunction · 0.85
new_http_object_requestFunction · 0.85
get_size_from_deltaFunction · 0.85
unpack_compressed_entryFunction · 0.85
inflate_itFunction · 0.85
inflate_requestFunction · 0.85
cmd__zlibFunction · 0.85
unpack_entry_dataFunction · 0.85
unpack_dataFunction · 0.85

Calls 4

zlib_pre_callFunction · 0.85
zlib_post_callFunction · 0.85
errorFunction · 0.85
zerr_to_stringFunction · 0.85

Tested by 1

cmd__zlibFunction · 0.68