mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-08 19:51:31 +00:00
Merge pull request #1989 from palistov/blame-cleanup
blame.c: Remove unnecessary error-check and goto
This commit is contained in:
commit
c4fcae5f7c
@ -282,8 +282,6 @@ static int load_blob(git_blame *blame)
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
error = git_object_lookup_bypath((git_object**)&blame->final_blob,
|
error = git_object_lookup_bypath((git_object**)&blame->final_blob,
|
||||||
(git_object*)blame->final, blame->path, GIT_OBJ_BLOB);
|
(git_object*)blame->final, blame->path, GIT_OBJ_BLOB);
|
||||||
if (error < 0)
|
|
||||||
goto cleanup;
|
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
return error;
|
return error;
|
||||||
|
Loading…
Reference in New Issue
Block a user