mirror of
https://git.proxmox.com/git/libgit2
synced 2025-07-19 19:13:49 +00:00
Merge pull request #2166 from ethomson/giterr_restore
clone: don't overwrite original error message
This commit is contained in:
commit
fcbbe1bd82
@ -430,10 +430,15 @@ int git_clone(
|
||||
}
|
||||
|
||||
if (error != 0) {
|
||||
git_error_state last_error = {0};
|
||||
giterr_capture(&last_error, error);
|
||||
|
||||
git_repository_free(repo);
|
||||
repo = NULL;
|
||||
|
||||
(void)git_futils_rmdir_r(local_path, NULL, rmdir_flags);
|
||||
|
||||
giterr_restore(&last_error);
|
||||
}
|
||||
|
||||
*out = repo;
|
||||
|
@ -85,3 +85,27 @@ void test_core_errors__new_school(void)
|
||||
|
||||
giterr_clear();
|
||||
}
|
||||
|
||||
void test_core_errors__restore(void)
|
||||
{
|
||||
git_error_state err_state = {0};
|
||||
|
||||
giterr_clear();
|
||||
cl_assert(giterr_last() == NULL);
|
||||
|
||||
cl_assert_equal_i(0, giterr_capture(&err_state, 0));
|
||||
|
||||
memset(&err_state, 0x0, sizeof(git_error_state));
|
||||
|
||||
giterr_set(42, "Foo: %s", "bar");
|
||||
cl_assert_equal_i(-1, giterr_capture(&err_state, -1));
|
||||
|
||||
cl_assert(giterr_last() == NULL);
|
||||
|
||||
giterr_set(99, "Bar: %s", "foo");
|
||||
|
||||
giterr_restore(&err_state);
|
||||
|
||||
cl_assert_equal_i(42, giterr_last()->klass);
|
||||
cl_assert_equal_s("Foo: bar", giterr_last()->message);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user