diff options
author | van Hauser <vh@thc.org> | 2019-12-02 15:25:17 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2019-12-02 15:25:17 +0100 |
commit | f8bc9b54dabc759e9ad1eb82e5ee36af3bb4e1a6 (patch) | |
tree | 25ca944fe68f932c68cae788fb5da6f36f6449c6 /src/afl-fuzz-globals.c | |
parent | 60c8121c1d4172528f5713c486d5dd3f809ec8ac (diff) | |
download | afl++-f8bc9b54dabc759e9ad1eb82e5ee36af3bb4e1a6.tar.gz |
added -N no_unlink option
Diffstat (limited to 'src/afl-fuzz-globals.c')
-rw-r--r-- | src/afl-fuzz-globals.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/afl-fuzz-globals.c b/src/afl-fuzz-globals.c index 5c36eb0b..de716098 100644 --- a/src/afl-fuzz-globals.c +++ b/src/afl-fuzz-globals.c @@ -83,7 +83,9 @@ u32 hang_tmout = EXEC_TIMEOUT; /* Timeout used for hang det (ms) */ u64 mem_limit = MEM_LIMIT; /* Memory cap for child (MB) */ u8 cal_cycles = CAL_CYCLES, /* Calibration cycles defaults */ - cal_cycles_long = CAL_CYCLES_LONG, debug, /* Debug mode */ + cal_cycles_long = CAL_CYCLES_LONG, /* Calibration cycles defaults */ + debug, /* Debug mode */ + no_unlink, /* do not unlink cur_input */ custom_only, /* Custom mutator only mode */ python_only; /* Python-only mode */ |