diff options
| author | Pierre-Olivier Latour <pol@mac.com> | 2015-06-23 20:59:03 -0700 |
|---|---|---|
| committer | Pierre-Olivier Latour <pol@mac.com> | 2015-06-23 20:59:03 -0700 |
| commit | 6a8f3fa85044243d9103283a899bc8058b3149fe (patch) | |
| tree | 9ef50cd3c9366588b7bba0edde644eda13b3505c | |
| parent | 8113056c7a9e3efc543e75147fe72a25405fc9f3 (diff) | |
| download | libgit2-6a8f3fa85044243d9103283a899bc8058b3149fe.tar.gz | |
Fixed invalid error handling in git_repository_open_ext()
| -rw-r--r-- | src/repository.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repository.c b/src/repository.c index b7c99ea7f..de1c0dc1f 100644 --- a/src/repository.c +++ b/src/repository.c @@ -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; } |
