diff options
author | van Hauser <vh@thc.org> | 2022-03-31 19:38:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-31 19:38:05 +0200 |
commit | ff5882f41502df0bc9b96fa677f4c71b0b85ab89 (patch) | |
tree | 37455c95725074fcc694c1b7e4343ef2cb7de6fb /frida_mode/src | |
parent | 285a5cb38b994b514744c49bad409a49210765d4 (diff) | |
parent | 2d7ac5f69c6016af3f9c4c2bbd45816d6db2fc70 (diff) | |
download | afl++-ff5882f41502df0bc9b96fa677f4c71b0b85ab89.tar.gz |
Merge pull request #1372 from devnexen/frida_arm64_build_fix
frida mode fix arm64 build
Diffstat (limited to 'frida_mode/src')
-rw-r--r-- | frida_mode/src/instrument/instrument_arm64.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frida_mode/src/instrument/instrument_arm64.c b/frida_mode/src/instrument/instrument_arm64.c index eb736386..e6251cb4 100644 --- a/frida_mode/src/instrument/instrument_arm64.c +++ b/frida_mode/src/instrument/instrument_arm64.c @@ -18,6 +18,8 @@ #if defined(__aarch64__) +gboolean instrument_cache_enabled = FALSE; +gsize instrument_cache_size = 0; static GHashTable *coverage_blocks = NULL; __attribute__((aligned(0x1000))) static guint8 area_ptr_dummy[MAP_SIZE]; |