summaryrefslogtreecommitdiffstats
path: root/apps/s_server.c
diff options
context:
space:
mode:
authorEmilia Kasper <emilia@openssl.org>2015-09-23 19:57:42 +0200
committerEmilia Kasper <emilia@openssl.org>2015-09-28 15:28:16 +0200
commit3a79618474f28537564f172b7aa8533e352b5dc5 (patch)
treea744b75ace076bd12ba19c3a1393df1e0945e0e7 /apps/s_server.c
parent8f4e661f537816571e4048bde73216c1d19903f9 (diff)
Silence Wconditional-uninitialized
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'apps/s_server.c')
-rw-r--r--apps/s_server.c2
1 files changed, 1 insertions, 1 deletions
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) {