Fix jenkins warning with possible uninitialized 'ret'.

This commit is contained in:
David Garske 2017-08-11 17:40:20 -07:00
parent b4aaeb5768
commit a9c943d5bd

View File

@ -1658,7 +1658,7 @@ void bench_chacha(void)
void bench_chacha20_poly1305_aead(void)
{
double start;
int ret, i, count;
int ret = 0, i, count;
byte authTag[CHACHA20_POLY1305_AEAD_AUTHTAG_SIZE];
XMEMSET(authTag, 0, sizeof(authTag));