From: Arran Cudbard-Bell Date: Tue, 17 Aug 2021 13:09:36 +0000 (-0500) Subject: Free all the things X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d320e925a2d47b60b3b016e171da822d9556761;p=thirdparty%2Ffreeradius-server.git Free all the things --- diff --git a/src/lib/util/heap_tests.c b/src/lib/util/heap_tests.c index 19ae201af69..031e3f7e877 100644 --- a/src/lib/util/heap_tests.c +++ b/src/lib/util/heap_tests.c @@ -180,6 +180,9 @@ static void heap_test_order(void) } TEST_CHECK(count == HEAP_TEST_SIZE); + + talloc_free(hp); + free(array); } static void heap_cycle(void)