From d52ea44c277adec06ac7b78241fbc356665f76de Mon Sep 17 00:00:00 2001 From: van Hauser Date: Thu, 20 Aug 2020 18:27:22 +0200 Subject: fix wrong var --- llvm_mode/afl-llvm-lto-instrumentation.so.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm_mode/afl-llvm-lto-instrumentation.so.cc') diff --git a/llvm_mode/afl-llvm-lto-instrumentation.so.cc b/llvm_mode/afl-llvm-lto-instrumentation.so.cc index 10482705..18bee7a5 100644 --- a/llvm_mode/afl-llvm-lto-instrumentation.so.cc +++ b/llvm_mode/afl-llvm-lto-instrumentation.so.cc @@ -621,7 +621,7 @@ bool AFLLTOPass::runOnModule(Module &M) { int skip = 0; for (uint32_t k = 0; k < BlockList.size(); k++) { - if (origBB == BlockList[k]) { + if (&BB == BlockList[k]) { if (debug) fprintf(stderr, -- cgit 1.4.1