Reset global variable to NULL after free'ing resource

This commit is contained in:
Sascha Cunz 2012-12-18 19:52:37 +01:00
parent e62171e2fc
commit 26290cd13b

View File

@ -105,6 +105,7 @@ void test_network_remotes__set_pushspec(void)
void test_network_remotes__save(void)
{
git_remote_free(_remote);
_remote = NULL;
/* Set up the remote and save it to config */
cl_git_pass(git_remote_new(&_remote, _repo, "upstream", "git://github.com/libgit2/libgit2", NULL));