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

Function drop_attr_stack

attr.c:463–470  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

461}
462
463static void drop_attr_stack(struct attr_stack **stack)
464{
465 while (*stack) {
466 struct attr_stack *elem = *stack;
467 *stack = elem->prev;
468 attr_stack_free(elem);
469 }
470}
471
472/* List of all attr_check structs; access should be surrounded by mutex */
473static struct check_vector {

Callers 2

drop_all_attr_stacksFunction · 0.85
attr_check_clearFunction · 0.85

Calls 1

attr_stack_freeFunction · 0.85

Tested by

no test coverage detected