diff options
author | Your <you@example.com> | 2022-12-01 18:17:21 +0000 |
---|---|---|
committer | Your <you@example.com> | 2022-12-01 18:19:47 +0000 |
commit | 0885dda767ec29330c57c88f3102d5ee565b645d (patch) | |
tree | fd3a1727859c5a868713f7d2fde1e104bd743bee | |
parent | 6dd9764cf6745a74772e93f3e91b83031a872766 (diff) | |
download | afl++-0885dda767ec29330c57c88f3102d5ee565b645d.tar.gz |
Fix branch suppression for ARM64
-rw-r--r-- | frida_mode/src/instrument/instrument_arm64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/src/instrument/instrument_arm64.c b/frida_mode/src/instrument/instrument_arm64.c index c7584a87..39e32b12 100644 --- a/frida_mode/src/instrument/instrument_arm64.c +++ b/frida_mode/src/instrument/instrument_arm64.c @@ -196,7 +196,7 @@ static void instrument_coverage_switch(GumStalkerObserver *self, insn = instrument_disassemble(from_insn); deterministic = instrument_is_deterministic(insn); cs_free(insn, 1); - if (deterministic) { return; } + if (!deterministic) { return; } /* * Since each block is prefixed with a restoration prologue, we need to be |