Fix memory leak in tests/network/refspecs.c

This commit is contained in:
Jeff Hostetler 2015-06-17 08:52:28 -04:00
parent a56db99234
commit 534d136da3

View File

@ -155,4 +155,6 @@ void test_network_refspecs__matching(void)
cl_assert_equal_s(":", spec.string); cl_assert_equal_s(":", spec.string);
cl_assert_equal_s("", spec.src); cl_assert_equal_s("", spec.src);
cl_assert_equal_s("", spec.dst); cl_assert_equal_s("", spec.dst);
git_refspec__free(&spec);
} }