| 613 | } |
| 614 | |
| 615 | void attr_check_clear(struct attr_check *check) |
| 616 | { |
| 617 | FREE_AND_NULL(check->items); |
| 618 | check->alloc = 0; |
| 619 | check->nr = 0; |
| 620 | |
| 621 | FREE_AND_NULL(check->all_attrs); |
| 622 | check->all_attrs_nr = 0; |
| 623 | |
| 624 | drop_attr_stack(&check->stack); |
| 625 | } |
| 626 | |
| 627 | void attr_check_free(struct attr_check *check) |
| 628 | { |
no test coverage detected