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

Function close_pack_revindex

packfile.c:421–431  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

419}
420
421static void close_pack_revindex(struct packed_git *p)
422{
423 FREE_AND_NULL(p->revindex);
424
425 if (!p->revindex_map)
426 return;
427
428 munmap((void *)p->revindex_map, p->revindex_size);
429 p->revindex_map = NULL;
430 p->revindex_data = NULL;
431}
432
433static void close_pack_mtimes(struct packed_git *p)
434{

Callers 1

close_packFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected