summaryrefslogtreecommitdiffstats
path: root/fuzz/x509.c
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/x509.c')
-rw-r--r--fuzz/x509.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fuzz/x509.c b/fuzz/x509.c
index cc6ff83bab..b2851f1e11 100644
--- a/fuzz/x509.c
+++ b/fuzz/x509.c
@@ -12,6 +12,10 @@
#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;