| 1839 | } |
| 1840 | |
| 1841 | static struct dir_entry *dir_entry_new(const char *pathname, int len) |
| 1842 | { |
| 1843 | struct dir_entry *ent; |
| 1844 | |
| 1845 | FLEX_ALLOC_MEM(ent, name, pathname, len); |
| 1846 | ent->len = len; |
| 1847 | return ent; |
| 1848 | } |
| 1849 | |
| 1850 | static struct dir_entry *dir_add_name(struct dir_struct *dir, |
| 1851 | struct index_state *istate, |
no outgoing calls
no test coverage detected