diff options
author | Ben Laurie <ben@links.org> | 2017-09-14 12:21:11 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-10-16 21:18:24 +0200 |
commit | cc1c473d70b5cc73bff8546e949d8609ad740099 (patch) | |
tree | caa6eb5b6ef6fb8f59943a59db18cf1ac9563109 /fuzz | |
parent | Cleaning secret data after use (diff) | |
download | openssl-cc1c473d70b5cc73bff8546e949d8609ad740099.tar.xz openssl-cc1c473d70b5cc73bff8546e949d8609ad740099.zip |
Remove unused variable.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4367)
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/server.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |