From 33a7a7f7623694be90f7984e01853f11389236f4 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Fri, 23 Aug 2013 10:20:39 -0700 Subject: [PATCH] initialize return variable --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index ec4f2094d..dd452d6d8 100644 --- a/src/internal.c +++ b/src/internal.c @@ -7509,7 +7509,7 @@ static void PickHashSigAlgo(CYASSL* ssl, #ifdef HAVE_ECC /* ecdsa */ if (sigAlgo == ecc_dsa_sa_algo) { - int verify = 0, ret; + int verify = 0, ret = 0; #ifndef NO_OLD_TLS byte* digest = &hash[MD5_DIGEST_SIZE]; word32 digestSz = SHA_DIGEST_SIZE;