diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-11-05 18:39:16 +0100 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-11-05 18:39:16 +0100 |
commit | 73cb58726649b860cbea9eef727e90ad14be4b31 (patch) | |
tree | dbc418a35849a8430781ddf9d45a07c9ed292d6d /src/afl-fuzz.c | |
parent | c11b8883e042fc5c8f42ad64e0fb34888f8bc2ea (diff) | |
download | afl++-73cb58726649b860cbea9eef727e90ad14be4b31.tar.gz |
test unicorn && AFL_DISABLE_TRIM env var
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index 14d7802d..26ed7b61 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -551,6 +551,9 @@ int main(int argc, char** argv) { } + if (getenv("AFL_DISABLE_TRIM")) + disable_trim = 1; + if (getenv("AFL_NO_UI") && getenv("AFL_FORCE_UI")) FATAL("AFL_NO_UI and AFL_FORCE_UI are mutually exclusive"); |