From db2a167ea29bfb3a2b8b8e7bfb71df9f465153db Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 12 Jun 2023 12:55:46 -0400 Subject: [PATCH] Plug a memory leak in the path tests --- testsuite/gsk/path-special-cases.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testsuite/gsk/path-special-cases.c b/testsuite/gsk/path-special-cases.c index b798904328..3c37488edf 100644 --- a/testsuite/gsk/path-special-cases.c +++ b/testsuite/gsk/path-special-cases.c @@ -258,6 +258,8 @@ test_rsvg_parse (void) gsk_path_unref (path); g_assert_cmpstr (string, ==, string2); + + g_free (string2); } path = gsk_path_parse (string);