fix wrong var

This commit is contained in:
van Hauser
2020-08-20 18:27:22 +02:00
parent 9c1b6cfb99
commit d52ea44c27
2 changed files with 3 additions and 4 deletions

View File

@ -992,9 +992,8 @@ int main(int argc, char **argv, char **envp) {
"AFL_LLVM_LAF_TRANSFORM_COMPARES: transform library comparison "
"function calls\n"
"AFL_LLVM_LAF_ALL: enables all LAF splits/transforms\n"
"AFL_LLVM_INSTRUMENT_FILE: enable the instrument file listing "
"(selective "
"instrumentation)\n"
"AFL_LLVM_INSTRUMENT_ALLOW/AFL_LLVM_INSTRUMENT_DENY: enable instrument"
"allow/deny listing (selective instrumentation)\n"
"AFL_NO_BUILTIN: compile for use with libtokencap.so\n"
"AFL_PATH: path to instrumenting pass and runtime "
"(afl-llvm-rt.*o)\n"

View File

@ -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,