From 5eb7768d00dba5775a9d502d60e349a615c927f6 Mon Sep 17 00:00:00 2001 From: David Garske Date: Sun, 22 May 2016 18:18:06 -0700 Subject: [PATCH] Added missing wolfCrypt_Init() to wolfCrypt tests. --- wolfcrypt/test/test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index d5d114c18..559b34eec 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -271,6 +271,8 @@ int wolfcrypt_test(void* args) InitMemoryTracker(); #endif + wolfCrypt_Init(); + #ifdef HAVE_FIPS wolfCrypt_SetCb_fips(myFipsCb); #endif