mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-05 20:33:41 +00:00
add a sorter to the reuc on index creation
This commit is contained in:
parent
f2e1d06064
commit
eb5ffd1944
@ -275,7 +275,8 @@ int git_index_open(git_index **index_out, const char *index_path)
|
|||||||
index->on_disk = 1;
|
index->on_disk = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (git_vector_init(&index->entries, 32, index_cmp) < 0)
|
if (git_vector_init(&index->entries, 32, index_cmp) < 0 ||
|
||||||
|
git_vector_init(&index->reuc, 32, reuc_cmp) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
index->entries_cmp_path = index_cmp_path;
|
index->entries_cmp_path = index_cmp_path;
|
||||||
|
Loading…
Reference in New Issue
Block a user