diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-18 10:22:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-18 10:22:55 +0200 |
commit | b55ea6409dfcadf3c43244fb8e72ea660fd4fcc2 (patch) | |
tree | 8c2a81fde3312449b18cff1ab6ce27432db6e3e2 /src/afl-fuzz-globals.c | |
parent | 68b3849d51e94e394334305b8ab7e4f613a8bbb9 (diff) | |
parent | 5e56d3bf368df07d964de769aa5142ad98536330 (diff) | |
download | afl++-b55ea6409dfcadf3c43244fb8e72ea660fd4fcc2.tar.gz |
Merge pull request #60 from vanhauser-thc/wine_mode
Wine mode
Diffstat (limited to 'src/afl-fuzz-globals.c')
-rw-r--r-- | src/afl-fuzz-globals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-globals.c b/src/afl-fuzz-globals.c index d457d28c..1358a1fb 100644 --- a/src/afl-fuzz-globals.c +++ b/src/afl-fuzz-globals.c @@ -74,7 +74,6 @@ u8 *in_dir, /* Input directory with test cases */ *file_extension, /* File extension */ *orig_cmdline; /* Original command line */ u8 *doc_path, /* Path to documentation dir */ - *target_path, /* Path to target binary */ *out_file; /* File to fuzz, if any */ u32 exec_tmout = EXEC_TIMEOUT; /* Configurable exec timeout (ms) */ @@ -115,6 +114,7 @@ u8 skip_deterministic, /* Skip deterministic stages? */ bitmap_changed = 1, /* Time to update bitmap? */ qemu_mode, /* Running in QEMU mode? */ unicorn_mode, /* Running in Unicorn mode? */ + use_wine, /* Use WINE with QEMU mode */ skip_requested, /* Skip request, via SIGUSR1 */ run_over10m, /* Run time over 10 minutes? */ persistent_mode, /* Running in persistent mode? */ |