Use _NO_INST in some build.info files
[openssl.git] / fuzz / conf.c
index 3e3f7f184b620b8f07ba61aabbd14f2626a26545..a76068dd7409934e3295d1ea40cc1ccc85864dba 100644 (file)
 #include <openssl/conf.h>
 #include "fuzzer.h"
 
-int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerInitialize(int *argc, char ***argv) {
+    return 1;
+}
+
+int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
     CONF *conf = NCONF_new(NULL);
     BIO *in = BIO_new(BIO_s_mem());
     long eline;
 
     OPENSSL_assert((size_t)BIO_write(in, buf, len) == len);
     NCONF_load_bio(conf, in, &eline);
-    //NCONF_dump_fp(conf, stdout);
     NCONF_free(conf);
     BIO_free(in);