X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=fuzz%2Fcrl.c;h=e4b0192f051b3f73b46d297df001abfdb60f63c5;hb=c7c7a8e60155d839671297d80680e6010bff2897;hp=51d184363ad2ecf1a22eda16ff56f20ea4fec2db;hpb=f3e911d5ed16db6a129306675e20e51d1ee81e1a;p=openssl.git diff --git a/fuzz/crl.c b/fuzz/crl.c index 51d184363a..e4b0192f05 100644 --- a/fuzz/crl.c +++ b/fuzz/crl.c @@ -10,10 +10,14 @@ #include #include +#include #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; } @@ -33,5 +37,11 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) X509_CRL_free(crl); } + ERR_clear_error(); + return 0; } + +void FuzzerCleanup(void) +{ +}