summaryrefslogtreecommitdiffstats
path: root/fuzz/x509.c
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/x509.c')
-rw-r--r--fuzz/x509.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/fuzz/x509.c b/fuzz/x509.c
index 78fef6c3ff..8d383e4aba 100644
--- a/fuzz/x509.c
+++ b/fuzz/x509.c
@@ -10,10 +10,14 @@
#include <openssl/x509.h>
#include <openssl/bio.h>
+#include <openssl/err.h>
#include "fuzzer.h"
int FuzzerInitialize(int *argc, char ***argv)
{
+ OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
+ ERR_get_state();
+ CRYPTO_free_ex_index(0, -1);
return 1;
}
@@ -34,6 +38,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len)
X509_free(x509);
}
+ ERR_clear_error();
return 0;
}