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

Function attr_check_free

attr.c:627–636  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

625}
626
627void attr_check_free(struct attr_check *check)
628{
629 if (check) {
630 /* Remove check from the check vector */
631 check_vector_remove(check);
632
633 attr_check_clear(check);
634 free(check);
635 }
636}
637
638static const char *builtin_attr[] = {
639 "[attr]binary -diff -merge -text",

Callers 4

clear_pathspecFunction · 0.85
reset_merge_attributesFunction · 0.85
reset_parsed_attributesFunction · 0.85
cmd_check_attrFunction · 0.85

Calls 2

check_vector_removeFunction · 0.85
attr_check_clearFunction · 0.85

Tested by 1

clear_pathspecFunction · 0.68