diff options
author | Emilia Kasper <emilia@openssl.org> | 2015-09-23 19:57:42 +0200 |
---|---|---|
committer | Emilia Kasper <emilia@openssl.org> | 2015-09-28 15:28:16 +0200 |
commit | 3a79618474f28537564f172b7aa8533e352b5dc5 (patch) | |
tree | a744b75ace076bd12ba19c3a1393df1e0945e0e7 /apps | |
parent | Fixing typo in PROBLEMS (diff) | |
download | openssl-3a79618474f28537564f172b7aa8533e352b5dc5.tar.xz openssl-3a79618474f28537564f172b7aa8533e352b5dc5.zip |
Silence Wconditional-uninitialized
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/s_server.c | 2 |
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) { |