From e95c4b07ae019b94681b0ebe0014cb27995b7924 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Wed, 22 Jan 2025 10:06:39 +0100 Subject: [PATCH] fuzz: Also test xmllint --repeat option --- fuzz/lint.c | 3 +-- xmllint.c | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/fuzz/lint.c b/fuzz/lint.c index 483e278f..65e33eea 100644 --- a/fuzz/lint.c +++ b/fuzz/lint.c @@ -30,8 +30,6 @@ * * --path: Requires cooperation with resource loader * - * --repeat: Could be limited to 2 when fuzzing - * * --relaxng: * --schema: * --schematron: Requires schemas @@ -79,6 +77,7 @@ static const char *const switches[] = { "--pushsmall", "--quiet", "--recover", + "--repeat", "--sax1", "--testIO", "--timing", diff --git a/xmllint.c b/xmllint.c index 272d8a58..84ca7eba 100644 --- a/xmllint.c +++ b/xmllint.c @@ -3023,10 +3023,14 @@ xmllintParseOptions(xmllintState *lint, int argc, const char **argv) { lint->generate = 1; } else if ((!strcmp(argv[i], "-repeat")) || (!strcmp(argv[i], "--repeat"))) { +#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION + lint->repeat = 2; +#else if (lint->repeat > 1) lint->repeat *= 10; else lint->repeat = 100; +#endif #ifdef LIBXML_PUSH_ENABLED } else if ((!strcmp(argv[i], "-push")) || (!strcmp(argv[i], "--push"))) {