From 5d0fd7435ab7d34dfcf6c1dca9494dc3e7376eec Mon Sep 17 00:00:00 2001 From: Tobias Stoeckmann Date: Thu, 1 Jun 2023 11:46:53 +0200 Subject: [PATCH] Fix test (#185) Free key_compare, otherwise the test fails if compiled with address sanitizer. Signed-off-by: Tobias Stoeckmann --- tests/tst-shells1.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/tst-shells1.c b/tests/tst-shells1.c index 6424e4d..9676b3b 100644 --- a/tests/tst-shells1.c +++ b/tests/tst-shells1.c @@ -119,6 +119,7 @@ main(void) econf_free (keys); econf_free (key_file); + econf_free (key_compare); return 0; }