From 3a79618474f28537564f172b7aa8533e352b5dc5 Mon Sep 17 00:00:00 2001 From: Emilia Kasper Date: Wed, 23 Sep 2015 19:57:42 +0200 Subject: [PATCH] Silence Wconditional-uninitialized Reviewed-by: Matt Caswell --- apps/s_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/s_server.c b/apps/s_server.c index 9ce1416247..f70539301e 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -2413,7 +2413,7 @@ static int init_ssl_connection(SSL *con) i = DTLSv1_listen(con, &client); if (i > 0) { BIO *wbio; - int fd; + int fd = -1; wbio = SSL_get_wbio(con); if(wbio) { -- 2.34.1