MCPcopy Index your code
hub / github.com/git/git / close_bundle

Function close_bundle

transport.c:219–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

217}
218
219static int close_bundle(struct transport *transport)
220{
221 struct bundle_transport_data *data = transport->data;
222 if (data->fd > 0)
223 close(data->fd);
224 bundle_header_release(&data->header);
225 free(data);
226 return 0;
227}
228
229struct git_transport_data {
230 struct git_transport_options options;

Callers

nothing calls this directly

Calls 1

bundle_header_releaseFunction · 0.85

Tested by

no test coverage detected