From: Michael Tremer Date: Tue, 25 Mar 2025 09:34:14 +0000 (+0000) Subject: tests: Free string array after use X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c161411e858d3401e54a405eebc860bcaf010adb;p=pakfire.git tests: Free string array after use Signed-off-by: Michael Tremer --- 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; }