From fb8c3e0c756ec8ffb79a5130ab0b9d9938408ecf Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Mon, 4 Nov 2013 15:36:08 -0700 Subject: [PATCH] fix gcc warning with enable-ocsp --- src/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io.c b/src/io.c index 1b47a8340..070bc8c63 100644 --- a/src/io.c +++ b/src/io.c @@ -758,7 +758,7 @@ int EmbedOcspLookup(void* ctx, const char* url, int urlSz, { char domainName[80], path[80]; int httpBufSz; - SOCKET_T sfd; + SOCKET_T sfd = 0; word16 port; int ocspRespSz = 0; byte* httpBuf = NULL;