index_read_index: set flags for path_len correctly

Update the flags to reset the path_len (to emulate `index_insert`)
This commit is contained in:
Edward Thomson 2016-06-02 01:04:58 -05:00 committed by Carlos Martín Nieto
parent e755f79fd7
commit 80745b1256

View File

@ -2999,6 +2999,9 @@ int git_index_read_index(
if (dup_entry) { if (dup_entry) {
if ((error = index_entry_dup_nocache(&add_entry, index, dup_entry)) < 0) if ((error = index_entry_dup_nocache(&add_entry, index, dup_entry)) < 0)
goto done; goto done;
index_entry_adjust_namemask(add_entry,
((struct entry_internal *)add_entry)->pathlen);
} }
if (add_entry) { if (add_entry) {