| 1095 | } |
| 1096 | |
| 1097 | void tail_link_ref(struct ref *ref, struct ref ***tail) |
| 1098 | { |
| 1099 | **tail = ref; |
| 1100 | while (ref->next) |
| 1101 | ref = ref->next; |
| 1102 | *tail = &ref->next; |
| 1103 | } |
| 1104 | |
| 1105 | static struct ref *alloc_delete_ref(void) |
| 1106 | { |
no outgoing calls
no test coverage detected