From 4497287321d2d2624316b38c00a032a5e890e88f Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Mon, 11 May 2015 14:02:53 -0400 Subject: [PATCH] stash: propagate the error when writing a tree --- src/stash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stash.c b/src/stash.c index 71ab7b945..c79068edf 100644 --- a/src/stash.c +++ b/src/stash.c @@ -106,7 +106,7 @@ static int build_tree_from_index(git_tree **out, git_index *index) git_oid i_tree_oid; 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); }