mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-24 18:02:30 +00:00
Merge pull request #2416 from libgit2/cmn/treebuilder-insert-sorted
treebuilder: insert sorted
This commit is contained in:
commit
7064cdafbd
@ -460,7 +460,7 @@ static int append_entry(
|
||||
git_oid_cpy(&entry->oid, id);
|
||||
entry->attr = (uint16_t)filemode;
|
||||
|
||||
if (git_vector_insert(&bld->entries, entry) < 0) {
|
||||
if (git_vector_insert_sorted(&bld->entries, entry, NULL) < 0) {
|
||||
git__free(entry);
|
||||
return -1;
|
||||
}
|
||||
@ -671,7 +671,7 @@ int git_treebuilder_insert(
|
||||
entry = alloc_entry(filename);
|
||||
GITERR_CHECK_ALLOC(entry);
|
||||
|
||||
if (git_vector_insert(&bld->entries, entry) < 0) {
|
||||
if (git_vector_insert_sorted(&bld->entries, entry, NULL) < 0) {
|
||||
git__free(entry);
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user