mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-29 18:27:29 +02:00
Fixup uninitialized warnings detected by xCode
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user