diff options
author | van Hauser <vh@thc.org> | 2022-12-01 22:09:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-01 22:09:01 +0100 |
commit | 9239ab01df26c554200520242a28f2cb0f514126 (patch) | |
tree | fd3a1727859c5a868713f7d2fde1e104bd743bee /frida_mode/src | |
parent | b5f2a172355314acdf0eb869028fafdb92e30681 (diff) | |
parent | 0885dda767ec29330c57c88f3102d5ee565b645d (diff) | |
download | afl++-9239ab01df26c554200520242a28f2cb0f514126.tar.gz |
Merge pull request #1598 from WorksButNotTested/arm64
Arm64
Diffstat (limited to 'frida_mode/src')
-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 |