From c161411e858d3401e54a405eebc860bcaf010adb Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 25 Mar 2025 09:34:14 +0000 Subject: [PATCH] tests: Free string array after use Signed-off-by: Michael Tremer --- tests/libpakfire/string.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/libpakfire/string.c b/tests/libpakfire/string.c index 46d418df..005572f1 100644 --- a/tests/libpakfire/string.c +++ b/tests/libpakfire/string.c @@ -512,6 +512,8 @@ static int test_strings_pop(const struct test* t) { r = EXIT_SUCCESS; FAIL: + pakfire_strings_free(array); + return r; } -- 2.39.5