diff options
author | vanhauser-thc <vh@thc.org> | 2021-04-09 11:19:40 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-04-09 11:19:48 +0200 |
commit | 019b26de58a4e7eb4b95aab6425beba4efb853f4 (patch) | |
tree | ddf5a2b48ad4ff4230ca81a5a6ea10b7afac4190 /instrumentation/afl-llvm-lto-instrumentation.so.cc | |
parent | 43ca2d31132bb4dea131ac52ee268222a3b6f6e4 (diff) | |
download | afl++-019b26de58a4e7eb4b95aab6425beba4efb853f4.tar.gz |
fix afl_custom_queue_new_entry when syncing
Diffstat (limited to 'instrumentation/afl-llvm-lto-instrumentation.so.cc')
-rw-r--r-- | instrumentation/afl-llvm-lto-instrumentation.so.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/afl-llvm-lto-instrumentation.so.cc b/instrumentation/afl-llvm-lto-instrumentation.so.cc index 6eb19060..f6cdbe9e 100644 --- a/instrumentation/afl-llvm-lto-instrumentation.so.cc +++ b/instrumentation/afl-llvm-lto-instrumentation.so.cc @@ -92,7 +92,7 @@ class AFLLTOPass : public ModulePass { uint32_t afl_global_id = 1, autodictionary = 1; uint32_t function_minimum_size = 1; uint32_t inst_blocks = 0, inst_funcs = 0, total_instr = 0; - uint64_t map_addr = 0x10000; + unsigned long long int map_addr = 0x10000; char * skip_nozero = NULL; }; |