about summary refs log tree commit diff
path: root/frida_mode/test/cmplog/cmplog.c
diff options
context:
space:
mode:
authorWorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com>2021-06-08 08:55:12 +0100
committerGitHub <noreply@github.com>2021-06-08 09:55:12 +0200
commitc7b9171c103fc80da75d2b9648b62aa87cbe76fd (patch)
treef66ce81c3812c1ce6f03aeb23f5a0956b19d517a /frida_mode/test/cmplog/cmplog.c
parentcd95dfe1e70d5fe3d33a5fed26565a407688568a (diff)
downloadafl++-c7b9171c103fc80da75d2b9648b62aa87cbe76fd.tar.gz
FRIDA AARCH64 support (#965)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/test/cmplog/cmplog.c')
-rw-r--r--frida_mode/test/cmplog/cmplog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/test/cmplog/cmplog.c b/frida_mode/test/cmplog/cmplog.c
index 99010645..ce5cf20e 100644
--- a/frida_mode/test/cmplog/cmplog.c
+++ b/frida_mode/test/cmplog/cmplog.c
@@ -53,7 +53,7 @@ int main(int argc, char **argv) {
 
   }
 
-#if defined(__x86_64__)
+#if defined(__x86_64__) || defined(__aarch64__)
   uint64_t x = 0;
   fread(&x, sizeof(x), 1, file);
   if (x != 0xCAFEBABECAFEBABE) {