describe: check error codes

This commit is contained in:
Edward Thomson 2014-11-29 15:57:35 -05:00
parent 53e48b370c
commit 32e2b758cf

View File

@ -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) {