Commit 0309e850 by Vicent Martí

Merge pull request #1352 from ethomson/reuc_sort

add a sorter to the reuc on index creation
parents f2e1d060 eb5ffd19
......@@ -275,7 +275,8 @@ int git_index_open(git_index **index_out, const char *index_path)
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;
index->entries_cmp_path = index_cmp_path;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment