diff options
author | Carlos Martín Nieto <cmn@elego.de> | 2012-07-21 17:54:56 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@elego.de> | 2012-07-21 17:55:35 +0200 |
commit | 14e1bc157a06d4513ce4193e6100a338432b3c88 (patch) | |
tree | d81362a9bb341276c50bceaa7305476c20190a21 | |
parent | 5b786963341debf4db7b2984ee4c9bd0c9948764 (diff) | |
download | libgit2-14e1bc157a06d4513ce4193e6100a338432b3c88.tar.gz |
tests: plug a leak in the config stress
-rw-r--r-- | tests-clar/config/stress.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests-clar/config/stress.c b/tests-clar/config/stress.c index 8fbc8b97c..6e7db6e8f 100644 --- a/tests-clar/config/stress.c +++ b/tests-clar/config/stress.c @@ -80,4 +80,5 @@ void test_config_stress__escape_subsection_names(void) cl_git_pass(git_config_get_string(&str, config, "some.sec\\tion.other")); cl_assert(!strcmp("foo", str)); + git_config_free(config); } |