Fix trivial memory leaks in tests.

* dirmngr/t-ldap-parse-uri.c (check_ldap_escape_filter): Free result.
* g10/t-stutter.c (main): Free file name.

Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
Justus Winter 2016-07-01 09:47:48 +02:00
parent 8f39185d7b
commit 6bfbc368f9
2 changed files with 3 additions and 0 deletions

View File

@ -222,6 +222,8 @@ check_ldap_escape_filter (int test_count, struct test_ldap_escape_filter *test)
test->filter, result, test->result);
fail (test_count * 1000);
}
xfree (result);
}
static void

View File

@ -606,5 +606,6 @@ main (int argc, char *argv[])
log_fatal ("Message is too short, nothing to test.\n");
}
xfree (filename);
return failed;
}