diff options
author | lazymio <mio@lazym.io> | 2022-04-24 20:13:40 +0200 |
---|---|---|
committer | lazymio <mio@lazym.io> | 2022-04-24 20:13:40 +0200 |
commit | ee50f41d29ea67282e7bd2a2fc495c6e09922916 (patch) | |
tree | 346a5bd5066ee472cb329fe628eda0f53d83b20e /frida_mode/src | |
parent | aeeca164b5a01eebc9c7cb386155375980e1fdc2 (diff) | |
parent | b2c96f66eef42a58d2b62f98a5cec6f5f483dbde (diff) | |
download | afl++-ee50f41d29ea67282e7bd2a2fc495c6e09922916.tar.gz |
Merge origin/dev
Diffstat (limited to 'frida_mode/src')
-rw-r--r-- | frida_mode/src/instrument/instrument_arm64.c | 4 | ||||
-rw-r--r-- | frida_mode/src/instrument/instrument_x64.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/frida_mode/src/instrument/instrument_arm64.c b/frida_mode/src/instrument/instrument_arm64.c index e6251cb4..2bc8f8aa 100644 --- a/frida_mode/src/instrument/instrument_arm64.c +++ b/frida_mode/src/instrument/instrument_arm64.c @@ -18,8 +18,8 @@ #if defined(__aarch64__) -gboolean instrument_cache_enabled = FALSE; -gsize instrument_cache_size = 0; +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]; diff --git a/frida_mode/src/instrument/instrument_x64.c b/frida_mode/src/instrument/instrument_x64.c index d54c8353..f02c971e 100644 --- a/frida_mode/src/instrument/instrument_x64.c +++ b/frida_mode/src/instrument/instrument_x64.c @@ -336,7 +336,8 @@ void instrument_coverage_optimize(const cs_insn * instr, GumStalkerOutput *output) { GumX86Writer *cw = output->writer.x86; - /* guint64 area_offset = instrument_get_offset_hash(GUM_ADDRESS(instr->address)); */ + /* guint64 area_offset = + * instrument_get_offset_hash(GUM_ADDRESS(instr->address)); */ if (instrument_previous_pc_addr == NULL) { GumAddressSpec spec = {.near_address = cw->code, |