about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYour Name <you@example.com>2021-08-18 10:47:07 +0100
committerYour Name <you@example.com>2021-08-18 10:47:07 +0100
commit17681405bcdc292cd5238c3199682d1e2f6a505c (patch)
tree4858cf9a0cf2c4ff633a3e4c90dffd6e6d6baf11
parentdbb793646e8ea0998c747bd1450a29d18737dcbd (diff)
downloadafl++-17681405bcdc292cd5238c3199682d1e2f6a505c.tar.gz
Force exit of coverage process
-rw-r--r--frida_mode/src/instrument/instrument_coverage.c2
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);
 
   }