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

Function object_list_free

object.c:423–430  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

421}
422
423void object_list_free(struct object_list **list)
424{
425 while (*list) {
426 struct object_list *p = *list;
427 *list = p->next;
428 free(p);
429 }
430}
431
432/*
433 * A zero-length string to which object_array_entry::name can be

Callers 2

find_objectsFunction · 0.85
prepare_bitmap_walkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected