diff options
author | David CARLIER <devnexen@gmail.com> | 2022-03-31 18:11:24 +0100 |
---|---|---|
committer | David CARLIER <devnexen@gmail.com> | 2022-03-31 18:11:24 +0100 |
commit | 2d7ac5f69c6016af3f9c4c2bbd45816d6db2fc70 (patch) | |
tree | 37455c95725074fcc694c1b7e4343ef2cb7de6fb /frida_mode/src | |
parent | 285a5cb38b994b514744c49bad409a49210765d4 (diff) | |
download | afl++-2d7ac5f69c6016af3f9c4c2bbd45816d6db2fc70.tar.gz |
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]; |