[fuzzers] do not fail fuzzers with empty input
[openssl.git] / fuzz / crl.c
index 4dd5b3b1556528d3f6278b24a4e5415f92dd2a3c..728943f551e68cfe39c0b6d9fd5c93bf975f5887 100644 (file)
 #include <openssl/bio.h>
 #include "fuzzer.h"
 
+int FuzzerInitialize(int *argc, char ***argv) {
+    return 1;
+}
+
 int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
     const unsigned char *p = buf;
     unsigned char *der = NULL;