From 6bfbc368f90b274192d3751274816091675f5109 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Fri, 1 Jul 2016 09:47:48 +0200 Subject: [PATCH] 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 --- dirmngr/t-ldap-parse-uri.c | 2 ++ g10/t-stutter.c | 1 + 2 files changed, 3 insertions(+) diff --git a/dirmngr/t-ldap-parse-uri.c b/dirmngr/t-ldap-parse-uri.c index 100ce0de8..145b47ab9 100644 --- a/dirmngr/t-ldap-parse-uri.c +++ b/dirmngr/t-ldap-parse-uri.c @@ -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 diff --git a/g10/t-stutter.c b/g10/t-stutter.c index 9576027a3..f3fc65330 100644 --- a/g10/t-stutter.c +++ b/g10/t-stutter.c @@ -606,5 +606,6 @@ main (int argc, char *argv[]) log_fatal ("Message is too short, nothing to test.\n"); } + xfree (filename); return failed; }