Unused variable cleanup

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1301)
This commit is contained in:
FdaSilvaYY 2016-07-11 19:46:08 +02:00 committed by Rich Salz
parent 55e0d0b462
commit 5f7d5125fd

View file

@ -155,7 +155,6 @@ static long socket_mtu;
#endif
static int dtlslisten = 0;
static BIO *serverinfo_in = NULL;
static const char *s_serverinfo_file = NULL;
#ifndef OPENSSL_NO_PSK
@ -1977,7 +1976,6 @@ int s_server_main(int argc, char *argv[])
SSL_CTX_free(ctx2);
X509_free(s_cert2);
EVP_PKEY_free(s_key2);
BIO_free(serverinfo_in);
#ifndef OPENSSL_NO_NEXTPROTONEG
OPENSSL_free(next_proto.data);
#endif