diff options
author | hexcoder- <heiko@hexco.de> | 2022-03-30 20:46:57 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2022-03-30 20:46:57 +0200 |
commit | 51dbd0e9571db5404b7c74169965367800b093db (patch) | |
tree | 3a057f4f3f0c370f7a8d3c9ac3efe11a962a57e7 | |
parent | 772e33d5500d80f913f7183c616b2eb222b15fc9 (diff) | |
download | afl++-51dbd0e9571db5404b7c74169965367800b093db.tar.gz |
ignore unused variable to let make DEBUG=1 distrib succeed
-rw-r--r-- | frida_mode/src/instrument/instrument_x64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/src/instrument/instrument_x64.c b/frida_mode/src/instrument/instrument_x64.c index 0bff3e02..d54c8353 100644 --- a/frida_mode/src/instrument/instrument_x64.c +++ b/frida_mode/src/instrument/instrument_x64.c @@ -336,7 +336,7 @@ 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, |