Fixup uninitialized warnings detected by xCode

This commit is contained in:
kaleb-himes 2023-03-16 15:18:00 -06:00
parent 75149f71d2
commit e1d1f0790e

View File

@ -9761,7 +9761,7 @@ static int aesecb_test(void)
#ifdef WOLFSSL_AES_COUNTER
static int aesctr_test(Aes* enc, Aes* dec, byte* cipher, byte* plain)
{
int ret;
int ret = 0;
/* test vectors from "Recommendation for Block Cipher Modes of
* Operation" NIST Special Publication 800-38A */
@ -42909,7 +42909,7 @@ WOLFSSL_TEST_SUBROUTINE int mp_test(void)
#ifndef WOLFSSL_SP_MATH
int k;
#endif
mp_digit d;
mp_digit d = 0;
#endif
#ifdef WOLFSSL_SMALL_STACK
mp_int *a = (mp_int *)XMALLOC(sizeof(mp_int), HEAP_HINT,