about summary refs log tree commit diff
path: root/frida_mode/src/entry.c
diff options
context:
space:
mode:
authorWorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com>2021-07-14 08:48:37 +0100
committerGitHub <noreply@github.com>2021-07-14 09:48:37 +0200
commit94999782f1a3742e3e755a66f5d76e84573ae6ef (patch)
tree9c2b40fae4587455e7feadb321d8a2ab3b5c1d96 /frida_mode/src/entry.c
parent7cec158b0eb9b09160e58b289093cf615e2ca429 (diff)
downloadafl++-94999782f1a3742e3e755a66f5d76e84573ae6ef.tar.gz
Improved block and edge numbering to reduce collisions (#1021)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/src/entry.c')
-rw-r--r--frida_mode/src/entry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/src/entry.c b/frida_mode/src/entry.c
index f70e21fc..a0ffd028 100644
--- a/frida_mode/src/entry.c
+++ b/frida_mode/src/entry.c
@@ -21,7 +21,7 @@ static void entry_launch(void) {
   __afl_manual_init();
 
   /* Child here */
-  instrument_previous_pc = 0;
+  instrument_on_fork();
   stats_on_fork();
 
 }