X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=fuzz%2Fcrl.c;h=e4b0192f051b3f73b46d297df001abfdb60f63c5;hp=51d184363ad2ecf1a22eda16ff56f20ea4fec2db;hb=d69d8f904c9c558c7a9455ee816e494690d80ca8;hpb=f3e911d5ed16db6a129306675e20e51d1ee81e1a 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) +{ +}