From: Kurt Roeckx Date: Wed, 2 Nov 2016 19:45:46 +0000 (+0100) Subject: conf fuzzer: also check for an empty file X-Git-Tag: OpenSSL_1_1_1-pre1~3272 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ea6199ea91ac59ae53686335e436d554cdacd2dc;p=oweals%2Fopenssl.git conf fuzzer: also check for an empty file Reviewed-by: Tim Hudson Reviewed-by: Rich Salz GH: #1828 --- diff --git a/fuzz/conf.c b/fuzz/conf.c index a76068dd74..30b13c84f9 100644 --- a/fuzz/conf.c +++ b/fuzz/conf.c @@ -20,10 +20,15 @@ int FuzzerInitialize(int *argc, char ***argv) { } int FuzzerTestOneInput(const uint8_t *buf, size_t len) { - CONF *conf = NCONF_new(NULL); - BIO *in = BIO_new(BIO_s_mem()); + CONF *conf; + BIO *in; long eline; + if (len == 0) + return 0; + + conf = NCONF_new(NULL); + in = BIO_new(BIO_s_mem()); OPENSSL_assert((size_t)BIO_write(in, buf, len) == len); NCONF_load_bio(conf, in, &eline); NCONF_free(conf);