| 421 | } |
| 422 | |
| 423 | void 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 |
no outgoing calls
no test coverage detected