mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-29 09:36:47 +00:00
revparse: Simplify error handling
This commit is contained in:
parent
a8d67afe42
commit
1634df8c28
@ -93,11 +93,7 @@ static int revparse_lookup_object(
|
||||
int error;
|
||||
git_reference *ref;
|
||||
|
||||
error = maybe_sha(object_out, repo, spec);
|
||||
if (!error)
|
||||
return 0;
|
||||
|
||||
if (error < 0 && error != GIT_ENOTFOUND)
|
||||
if ((error = maybe_sha(object_out, repo, spec)) != GIT_ENOTFOUND)
|
||||
return error;
|
||||
|
||||
error = git_reference_dwim(&ref, repo, spec);
|
||||
@ -112,18 +108,14 @@ static int revparse_lookup_object(
|
||||
return error;
|
||||
}
|
||||
|
||||
if (error < 0 && error != GIT_ENOTFOUND)
|
||||
if (error != GIT_ENOTFOUND)
|
||||
return error;
|
||||
|
||||
if ((strlen(spec) < GIT_OID_HEXSZ) &&
|
||||
((error = maybe_abbrev(object_out, repo, spec)) != GIT_ENOTFOUND))
|
||||
return error;
|
||||
|
||||
error = maybe_describe(object_out, repo, spec);
|
||||
if (!error)
|
||||
return 0;
|
||||
|
||||
if (error < 0 && error != GIT_ENOTFOUND)
|
||||
if ((error = maybe_describe(object_out, repo, spec)) != GIT_ENOTFOUND)
|
||||
return error;
|
||||
|
||||
giterr_set(GITERR_REFERENCE, "Revspec '%s' not found.", spec);
|
||||
|
Loading…
Reference in New Issue
Block a user