diff options
author | Your Name <you@example.com> | 2021-08-18 10:47:07 +0100 |
---|---|---|
committer | Your Name <you@example.com> | 2021-08-18 10:47:07 +0100 |
commit | 17681405bcdc292cd5238c3199682d1e2f6a505c (patch) | |
tree | 4858cf9a0cf2c4ff633a3e4c90dffd6e6d6baf11 | |
parent | dbb793646e8ea0998c747bd1450a29d18737dcbd (diff) | |
download | afl++-17681405bcdc292cd5238c3199682d1e2f6a505c.tar.gz |
Force exit of coverage process
-rw-r--r-- | frida_mode/src/instrument/instrument_coverage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/src/instrument/instrument_coverage.c b/frida_mode/src/instrument/instrument_coverage.c index 68284e71..9d1701d1 100644 --- a/frida_mode/src/instrument/instrument_coverage.c +++ b/frida_mode/src/instrument/instrument_coverage.c @@ -340,7 +340,7 @@ void instrument_coverage_init(void) { if (pid == 0) { instrument_coverage_run(); - exit(0); + _exit(0); } |