| 2961 | } |
| 2962 | |
| 2963 | void remove_untracked_cache(struct index_state *istate) |
| 2964 | { |
| 2965 | if (istate->untracked) { |
| 2966 | free_untracked_cache(istate->untracked); |
| 2967 | istate->untracked = NULL; |
| 2968 | istate->cache_changed |= UNTRACKED_CHANGED; |
| 2969 | } |
| 2970 | } |
| 2971 | |
| 2972 | static struct untracked_cache_dir *validate_untracked_cache(struct dir_struct *dir, |
| 2973 | int base_len, |
no test coverage detected