summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@microsoft.com>2014-11-29 15:57:35 -0500
committerEdward Thomson <ethomson@microsoft.com>2014-11-29 15:57:35 -0500
commit32e2b758cf20f1a1a608c0e52e300254fe9bdd28 (patch)
treeec306b7fee4e1b7a5b1f07536a52868827a63aa6
parent53e48b370c585d5552cea7538bb20db500a865d7 (diff)
downloadlibgit2-32e2b758cf20f1a1a608c0e52e300254fe9bdd28.tar.gz
describe: check error codes
-rw-r--r--src/describe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/describe.c b/src/describe.c
index a193fcbcb..57f715b5e 100644
--- a/src/describe.c
+++ b/src/describe.c
@@ -682,9 +682,9 @@ int git_describe_commit(
if ((error = git_object_peel((git_object **)(&commit), committish, GIT_OBJ_COMMIT)) < 0)
goto cleanup;
- if (git_reference_foreach_name(
+ if ((error = git_reference_foreach_name(
git_object_owner(committish),
- get_name, &data) < 0)
+ get_name, &data)) < 0)
goto cleanup;
if (git_oidmap_size(data.names) == 0) {