wolfcrypt/test/test.c: fix uninitialized values in aesofb_test().

This commit is contained in:
Daniel Pouzzner
2020-08-25 13:02:41 -05:00
parent e09487de1f
commit 32e30d23c6

View File

@@ -6025,9 +6025,9 @@ EVP_TEST_END:
#endif #endif
int ret = 0; int ret = 0;
(void)enc; memset(&enc,0,sizeof enc);
#ifdef HAVE_AES_DECRYPT #ifdef HAVE_AES_DECRYPT
(void)dec; memset(&dec,0,sizeof dec);
#endif #endif
#ifdef WOLFSSL_AES_128 #ifdef WOLFSSL_AES_128