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 | |
parent | b5f2a172355314acdf0eb869028fafdb92e30681 (diff) | |
parent | 0885dda767ec29330c57c88f3102d5ee565b645d (diff) | |
download | afl++-9239ab01df26c554200520242a28f2cb0f514126.tar.gz |
Merge pull request #1598 from WorksButNotTested/arm64
Arm64
-rw-r--r-- | frida_mode/GNUmakefile | 2 | ||||
-rw-r--r-- | frida_mode/src/instrument/instrument_arm64.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/frida_mode/GNUmakefile b/frida_mode/GNUmakefile index ccc4841d..d283c3d7 100644 --- a/frida_mode/GNUmakefile +++ b/frida_mode/GNUmakefile @@ -145,7 +145,7 @@ ifndef OS $(error "Operating system unsupported") endif -GUM_DEVKIT_VERSION=16.0.1 +GUM_DEVKIT_VERSION=16.0.6 GUM_DEVKIT_FILENAME=frida-gumjs-devkit-$(GUM_DEVKIT_VERSION)-$(OS)-$(ARCH).tar.xz GUM_DEVKIT_URL="https://github.com/frida/frida/releases/download/$(GUM_DEVKIT_VERSION)/$(GUM_DEVKIT_FILENAME)" 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 |