MCPcopy Index your code
hub / github.com/git/git / object_array_release_entry

Function object_array_release_entry

object.c:485–490  ·  view source on GitHub ↗

* Free all memory associated with an entry; the result is * in an unspecified state and should not be examined. */

Source from the content-addressed store, hash-verified

483 * in an unspecified state and should not be examined.
484 */
485static 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
492struct object *object_array_pop(struct object_array *array)
493{

Callers 3

object_array_popFunction · 0.85
object_array_filterFunction · 0.85
object_array_clearFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected