diff options
author | vanhauser-thc <vh@thc.org> | 2021-11-04 15:53:17 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-11-04 15:53:17 +0100 |
commit | 6ce3d7fede6b32b522b6cc4403f7c0101cf4a4bc (patch) | |
tree | a043ea65c1d25dd0b5bc35ee5e4a00497c2042bb /utils/aflpp_driver/aflpp_qemu_driver.c | |
parent | 5e0e385e6290e44eebef32e8b1a2438ebde572e5 (diff) | |
download | afl++-6ce3d7fede6b32b522b6cc4403f7c0101cf4a4bc.tar.gz |
add AFL_USE_TSAN
Diffstat (limited to 'utils/aflpp_driver/aflpp_qemu_driver.c')
-rw-r--r-- | utils/aflpp_driver/aflpp_qemu_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/aflpp_driver/aflpp_qemu_driver.c b/utils/aflpp_driver/aflpp_qemu_driver.c index 99a4c9a8..e47df1e6 100644 --- a/utils/aflpp_driver/aflpp_qemu_driver.c +++ b/utils/aflpp_driver/aflpp_qemu_driver.c @@ -22,7 +22,7 @@ int main(int argc, char **argv) { if (LLVMFuzzerInitialize) LLVMFuzzerInitialize(&argc, &argv); // Do any other expensive one-time initialization here. - if (getenv("AFL_QEMU_DRIVER_NO_HOOK")) { + if (getenv("AFL_QEMU_DRIVER_NO_HOOK") || getenv("AFL_FRIDA_DRIVER_NO_HOOK")) { afl_qemu_driver_stdin_input(); |