mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Fix the very noisy unit test memory leak of CID 420-421.
On any failing case in test_util_config_line, we would leak a couple of strings.
This commit is contained in:
parent
caa141617f
commit
134ac8059b
@ -88,7 +88,7 @@ static void
|
||||
test_util_config_line(void)
|
||||
{
|
||||
char buf[1024];
|
||||
char *k, *v;
|
||||
char *k=NULL, *v=NULL;
|
||||
const char *str;
|
||||
|
||||
/* Test parse_config_line_from_str */
|
||||
@ -161,7 +161,8 @@ test_util_config_line(void)
|
||||
tor_free(k); tor_free(v);
|
||||
test_streq(str, "");
|
||||
done:
|
||||
;
|
||||
tor_free(k);
|
||||
tor_free(v);
|
||||
}
|
||||
|
||||
/** Test basic string functionality. */
|
||||
|
Loading…
Reference in New Issue
Block a user