mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-23 03:19:03 +00:00
stash: propagate the error when writing a tree
This commit is contained in:
parent
4ea3eebf4b
commit
4497287321
@ -106,7 +106,7 @@ static int build_tree_from_index(git_tree **out, git_index *index)
|
|||||||
git_oid i_tree_oid;
|
git_oid i_tree_oid;
|
||||||
|
|
||||||
if ((error = git_index_write_tree(&i_tree_oid, index)) < 0)
|
if ((error = git_index_write_tree(&i_tree_oid, index)) < 0)
|
||||||
return -1;
|
return error;
|
||||||
|
|
||||||
return git_tree_lookup(out, git_index_owner(index), &i_tree_oid);
|
return git_tree_lookup(out, git_index_owner(index), &i_tree_oid);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user