MCPcopy Create free account
hub / github.com/git/git / free_untracked

Function free_untracked

dir.c:3725–3737  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3723}
3724
3725static void free_untracked(struct untracked_cache_dir *ucd)
3726{
3727 int i;
3728 if (!ucd)
3729 return;
3730 for (i = 0; i < ucd->dirs_nr; i++)
3731 free_untracked(ucd->dirs[i]);
3732 for (i = 0; i < ucd->untracked_nr; i++)
3733 free(ucd->untracked[i]);
3734 free(ucd->untracked);
3735 free(ucd->dirs);
3736 free(ucd);
3737}
3738
3739void free_untracked_cache(struct untracked_cache *uc)
3740{

Callers 1

free_untracked_cacheFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected