Prevent fuzzer using wizloadlua and wizloaddes
Otherwise the fuzzer will enter a nonexistent file name, and stop.
This commit is contained in:
@@ -943,7 +943,7 @@ wiz_detect(VOID_ARGS)
|
|||||||
static int
|
static int
|
||||||
wiz_load_lua(VOID_ARGS)
|
wiz_load_lua(VOID_ARGS)
|
||||||
{
|
{
|
||||||
if (wizard) {
|
if (wizard && !iflags.debug_fuzzer) {
|
||||||
char buf[BUFSZ];
|
char buf[BUFSZ];
|
||||||
|
|
||||||
buf[0] = '\0';
|
buf[0] = '\0';
|
||||||
@@ -961,7 +961,7 @@ wiz_load_lua(VOID_ARGS)
|
|||||||
static int
|
static int
|
||||||
wiz_load_splua(VOID_ARGS)
|
wiz_load_splua(VOID_ARGS)
|
||||||
{
|
{
|
||||||
if (wizard) {
|
if (wizard && !iflags.debug_fuzzer) {
|
||||||
boolean was_in_W_tower = In_W_tower(u.ux, u.uy, &u.uz);
|
boolean was_in_W_tower = In_W_tower(u.ux, u.uy, &u.uz);
|
||||||
char buf[BUFSZ];
|
char buf[BUFSZ];
|
||||||
int ridx;
|
int ridx;
|
||||||
|
|||||||
Reference in New Issue
Block a user