forked from pyrite-dev/milsko
fuzzer fixes
This commit is contained in:
parent
2e23342620
commit
3005ec9c0c
1 changed files with 4 additions and 3 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue