mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-05 20:33:41 +00:00
Fix some memory leaks
This commit is contained in:
parent
ae59321fb8
commit
249888948f
@ -185,6 +185,7 @@ void test_clone_nonetwork__custom_autotag(void)
|
||||
cl_assert_equal_i(GIT_REMOTE_DOWNLOAD_TAGS_NONE, origin->download_tags);
|
||||
|
||||
git_strarray_free(&tags);
|
||||
git_remote_free(origin);
|
||||
}
|
||||
|
||||
void test_clone_nonetwork__custom_autotag_tags_all(void)
|
||||
@ -199,6 +200,7 @@ void test_clone_nonetwork__custom_autotag_tags_all(void)
|
||||
cl_assert_equal_i(GIT_REMOTE_DOWNLOAD_TAGS_ALL, origin->download_tags);
|
||||
|
||||
git_strarray_free(&tags);
|
||||
git_remote_free(origin);
|
||||
}
|
||||
|
||||
void test_clone_nonetwork__cope_with_already_existing_directory(void)
|
||||
|
@ -113,11 +113,12 @@ void test_refs_branches_upstream__set_unset_upstream(void)
|
||||
cl_git_pass(git_config_get_string(&value, config, "branch.test.merge"));
|
||||
cl_assert_equal_s(value, "refs/heads/master");
|
||||
|
||||
git_reference_free(branch);
|
||||
|
||||
/* local */
|
||||
cl_git_pass(git_reference_lookup(&branch, repository, "refs/heads/test"));
|
||||
cl_git_pass(git_branch_set_upstream(branch, "master"));
|
||||
|
||||
cl_git_pass(git_repository_config(&config, repository));
|
||||
cl_git_pass(git_config_get_string(&value, config, "branch.test.remote"));
|
||||
cl_assert_equal_s(value, ".");
|
||||
cl_git_pass(git_config_get_string(&value, config, "branch.test.merge"));
|
||||
|
Loading…
Reference in New Issue
Block a user