mirror of
https://git.proxmox.com/git/libgit2
synced 2026-01-02 22:36:57 +00:00
Fixed invalid error handling in git_repository_open_ext()
This commit is contained in:
parent
8113056c7a
commit
6a8f3fa850
@ -531,7 +531,7 @@ int git_repository_open_ext(
|
||||
|
||||
if (config &&
|
||||
((error = load_config_data(repo, config)) < 0 ||
|
||||
(error = load_workdir(repo, config, &parent))) < 0)
|
||||
(error = load_workdir(repo, config, &parent)) < 0))
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user