forked from wolfSSL/wolfssl
Fix jenkins warning with possible uninitialized 'ret'.
This commit is contained in:
@ -1658,7 +1658,7 @@ void bench_chacha(void)
|
|||||||
void bench_chacha20_poly1305_aead(void)
|
void bench_chacha20_poly1305_aead(void)
|
||||||
{
|
{
|
||||||
double start;
|
double start;
|
||||||
int ret, i, count;
|
int ret = 0, i, count;
|
||||||
|
|
||||||
byte authTag[CHACHA20_POLY1305_AEAD_AUTHTAG_SIZE];
|
byte authTag[CHACHA20_POLY1305_AEAD_AUTHTAG_SIZE];
|
||||||
XMEMSET(authTag, 0, sizeof(authTag));
|
XMEMSET(authTag, 0, sizeof(authTag));
|
||||||
|
Reference in New Issue
Block a user