mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 02:37:28 +02:00
wolfcrypt/test/test.c: fix uninitialized values in aesofb_test().
This commit is contained in:
@ -6025,9 +6025,9 @@ EVP_TEST_END:
|
||||
#endif
|
||||
int ret = 0;
|
||||
|
||||
(void)enc;
|
||||
memset(&enc,0,sizeof enc);
|
||||
#ifdef HAVE_AES_DECRYPT
|
||||
(void)dec;
|
||||
memset(&dec,0,sizeof dec);
|
||||
#endif
|
||||
|
||||
#ifdef WOLFSSL_AES_128
|
||||
|
Reference in New Issue
Block a user