From ff754e67aedfbc8a8a68731c2802e93172090849 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Sun, 31 Jan 2021 00:07:11 +0100 Subject: [PATCH] Add missing cleanup in a test function Signed-off-by: Gilles Peskine --- tests/suites/test_suite_entropy.function | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/suites/test_suite_entropy.function b/tests/suites/test_suite_entropy.function index cb5e20462..76aaad71d 100644 --- a/tests/suites/test_suite_entropy.function +++ b/tests/suites/test_suite_entropy.function @@ -190,6 +190,9 @@ void entropy_func_len( int len, int ret ) for( j = len; j < sizeof( buf ); j++ ) TEST_ASSERT( acc[j] == 0 ); + +exit: + mbedtls_entropy_free( &ctx ); } /* END_CASE */