mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +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
|
#ifdef WOLFSSL_AES_COUNTER
|
||||||
static int aesctr_test(Aes* enc, Aes* dec, byte* cipher, byte* plain)
|
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
|
/* test vectors from "Recommendation for Block Cipher Modes of
|
||||||
* Operation" NIST Special Publication 800-38A */
|
* Operation" NIST Special Publication 800-38A */
|
||||||
@ -42909,7 +42909,7 @@ WOLFSSL_TEST_SUBROUTINE int mp_test(void)
|
|||||||
#ifndef WOLFSSL_SP_MATH
|
#ifndef WOLFSSL_SP_MATH
|
||||||
int k;
|
int k;
|
||||||
#endif
|
#endif
|
||||||
mp_digit d;
|
mp_digit d = 0;
|
||||||
#endif
|
#endif
|
||||||
#ifdef WOLFSSL_SMALL_STACK
|
#ifdef WOLFSSL_SMALL_STACK
|
||||||
mp_int *a = (mp_int *)XMALLOC(sizeof(mp_int), HEAP_HINT,
|
mp_int *a = (mp_int *)XMALLOC(sizeof(mp_int), HEAP_HINT,
|
||||||
|
Reference in New Issue
Block a user