From: Ben Laurie Date: Thu, 14 Sep 2017 10:21:11 +0000 (+0100) Subject: Remove unused variable. X-Git-Tag: OpenSSL_1_1_1-pre1~541 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=cc1c473d70b5cc73bff8546e949d8609ad740099;ds=sidebyside Remove unused variable. Reviewed-by: Tim Hudson Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/4367) --- diff --git a/fuzz/server.c b/fuzz/server.c index c31cf7ff2f..2f7403e277 100644 --- a/fuzz/server.c +++ b/fuzz/server.c @@ -507,7 +507,9 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) SSL *server; BIO *in; BIO *out; +#if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_DSA) BIO *bio_buf; +#endif SSL_CTX *ctx; int ret; RSA *privkey;