mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
fuzz/server.c: Fix build error on OPENSSL_NO_{DSA,EC,DEPECATED_3_0}
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13110)
This commit is contained in:
parent
8ce3244c57
commit
e3a4d3bb61
@ -521,7 +521,10 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len)
|
||||
RSA *privkey;
|
||||
#endif
|
||||
const uint8_t *bufp;
|
||||
#if !defined(OPENSSL_NO_DSA) || !defined(OPENSSL_NO_EC) \
|
||||
|| !defined(OPENSSL_NO_DEPRECATED_3_0)
|
||||
EVP_PKEY *pkey;
|
||||
#endif
|
||||
X509 *cert;
|
||||
#ifndef OPENSSL_NO_EC
|
||||
EC_KEY *ecdsakey = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user