diff options
author | van Hauser <vh@thc.org> | 2022-04-06 10:24:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-06 10:24:07 +0200 |
commit | ac80678592ea4a790ab2eedccfec4e3bc9f96447 (patch) | |
tree | a553b0abf57558c579f2ed63cee1cee276a4de12 /instrumentation/cmplog-instructions-pass.cc | |
parent | 881aef21fd6ca3f3bcf0847587d4d6d86f3a69db (diff) | |
parent | 3c5edab724f7e067163e85e94077c48894989573 (diff) | |
download | afl++-ac80678592ea4a790ab2eedccfec4e3bc9f96447.tar.gz |
Merge pull request #1380 from AFLplusplus/dev
fix cmplog
Diffstat (limited to 'instrumentation/cmplog-instructions-pass.cc')
-rw-r--r-- | instrumentation/cmplog-instructions-pass.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/cmplog-instructions-pass.cc b/instrumentation/cmplog-instructions-pass.cc index fd7930a1..4d37bcb2 100644 --- a/instrumentation/cmplog-instructions-pass.cc +++ b/instrumentation/cmplog-instructions-pass.cc @@ -515,7 +515,7 @@ bool CmpLogInstructions::hookInstrs(Module &M) { while (1) { std::vector<Value *> args; - bool skip = true; + bool skip = false; if (vector_cnt) { |