From: Richard W.M. Jones Date: Tue, 26 Jul 2022 08:56:03 +0000 (+0100) Subject: tests: test-multi-match.c: Fix memory leaks in test X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=bc7f2694f006e97e9c97dc2a25c968a90fbe7340;p=miniexpect.git tests: test-multi-match.c: Fix memory leaks in test --- diff --git a/test-multi-match.c b/test-multi-match.c index a133d06..dd36c72 100644 --- a/test-multi-match.c +++ b/test-multi-match.c @@ -92,5 +92,12 @@ main (int argc, char *argv[]) exit (EXIT_FAILURE); } + pcre2_code_free (multi_re); + pcre2_code_free (match_re); + pcre2_code_free (ing_re); + pcre2_code_free (str_re); + pcre2_code_free (s_re); + pcre2_match_data_free (match_data); + exit (EXIT_SUCCESS); }