From 98536fa5bf4a39e8c8761b5b288cb11d91a22c36 Mon Sep 17 00:00:00 2001 From: Karel Miko Date: Sun, 1 Oct 2017 15:40:19 +0200 Subject: [PATCH] add missing dsa_free to _dsa_wycheproof_test - fixes #303 --- tests/dsa_test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/dsa_test.c b/tests/dsa_test.c index e77e7de..e620dde 100644 --- a/tests/dsa_test.c +++ b/tests/dsa_test.c @@ -313,6 +313,7 @@ static int _dsa_wycheproof_test(void) return CRYPT_FAIL_TESTVECTOR; } + dsa_free(&key); return CRYPT_OK; }