From 3005ec9c0c1217d5897e36ac554720d882b427d1 Mon Sep 17 00:00:00 2001 From: IoIxD Date: Sun, 26 Apr 2026 18:11:39 -0700 Subject: [PATCH] fuzzer fixes --- tools/fuzzer.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/fuzzer.c b/tools/fuzzer.c index bfc3a0e..b64ba1d 100644 --- a/tools/fuzzer.c +++ b/tools/fuzzer.c @@ -40,8 +40,9 @@ get_input: upper_limit = maxxes[3]; break; default: - printf("Invalid value. Pick 0-3.\n"); - goto get_input; + upper_limit = maxxes[0]; + // printf("Invalid value. Pick 0-3.\n"); + // goto get_input; } MwLibraryInit(); @@ -58,8 +59,8 @@ get_input: unsigned long number = rand() % UINT8_MAX; printf("> %s = %lu\n", int_params[i], number); MwVaApply(widget, int_params[i], number, NULL); - MwStep(window); } + MwStep(window); MwDestroyWidget(widget);