diff options
Diffstat (limited to 'examples/aflpp_driver/aflpp_qemu_driver.c')
-rw-r--r-- | examples/aflpp_driver/aflpp_qemu_driver.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/aflpp_driver/aflpp_qemu_driver.c b/examples/aflpp_driver/aflpp_qemu_driver.c index 0944148e..404ce84c 100644 --- a/examples/aflpp_driver/aflpp_qemu_driver.c +++ b/examples/aflpp_driver/aflpp_qemu_driver.c @@ -17,8 +17,8 @@ void afl_qemu_driver_stdin_input(void) { } int main(int argc, char **argv) { - if (LLVMFuzzerInitialize) - LLVMFuzzerInitialize(&argc, &argv); + + if (LLVMFuzzerInitialize) LLVMFuzzerInitialize(&argc, &argv); // Do any other expensive one-time initialization here. if (getenv("AFL_QEMU_DRIVER_NO_HOOK")) { @@ -33,4 +33,6 @@ int main(int argc, char **argv) { } return 0; + } + |