mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-19 13:03:44 +00:00
fix wrong var
This commit is contained in:
@ -992,9 +992,8 @@ int main(int argc, char **argv, char **envp) {
|
|||||||
"AFL_LLVM_LAF_TRANSFORM_COMPARES: transform library comparison "
|
"AFL_LLVM_LAF_TRANSFORM_COMPARES: transform library comparison "
|
||||||
"function calls\n"
|
"function calls\n"
|
||||||
"AFL_LLVM_LAF_ALL: enables all LAF splits/transforms\n"
|
"AFL_LLVM_LAF_ALL: enables all LAF splits/transforms\n"
|
||||||
"AFL_LLVM_INSTRUMENT_FILE: enable the instrument file listing "
|
"AFL_LLVM_INSTRUMENT_ALLOW/AFL_LLVM_INSTRUMENT_DENY: enable instrument"
|
||||||
"(selective "
|
"allow/deny listing (selective instrumentation)\n"
|
||||||
"instrumentation)\n"
|
|
||||||
"AFL_NO_BUILTIN: compile for use with libtokencap.so\n"
|
"AFL_NO_BUILTIN: compile for use with libtokencap.so\n"
|
||||||
"AFL_PATH: path to instrumenting pass and runtime "
|
"AFL_PATH: path to instrumenting pass and runtime "
|
||||||
"(afl-llvm-rt.*o)\n"
|
"(afl-llvm-rt.*o)\n"
|
||||||
|
@ -621,7 +621,7 @@ bool AFLLTOPass::runOnModule(Module &M) {
|
|||||||
int skip = 0;
|
int skip = 0;
|
||||||
for (uint32_t k = 0; k < BlockList.size(); k++) {
|
for (uint32_t k = 0; k < BlockList.size(); k++) {
|
||||||
|
|
||||||
if (origBB == BlockList[k]) {
|
if (&BB == BlockList[k]) {
|
||||||
|
|
||||||
if (debug)
|
if (debug)
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
|
Reference in New Issue
Block a user