From 2122ee2eb5be4ee18777ba8c8811ac55c9d378f4 Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Wed, 26 Oct 2016 09:33:15 -0600 Subject: [PATCH] IAR compiler for ARM 7.70.2.11706 - unitialized warning --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index 01bd455fd..b10d7c37b 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -7754,7 +7754,7 @@ static int GetDeepCopySession(WOLFSSL* ssl, WOLFSSL_SESSION* copyFrom) { WOLFSSL_SESSION* copyInto = &ssl->session; void* tmpBuff = NULL; - int ticketLen; + int ticketLen = 0; int doDynamicCopy = 0; int ret = SSL_SUCCESS;