* Free all memory associated with an entry; the result is * in an unspecified state and should not be examined. */
| 483 | * in an unspecified state and should not be examined. |
| 484 | */ |
| 485 | static void object_array_release_entry(struct object_array_entry *ent) |
| 486 | { |
| 487 | if (ent->name != object_array_slopbuf) |
| 488 | free(ent->name); |
| 489 | free(ent->path); |
| 490 | } |
| 491 | |
| 492 | struct object *object_array_pop(struct object_array *array) |
| 493 | { |
no outgoing calls
no test coverage detected