diff options
author | vanhauser-thc <vh@thc.org> | 2021-02-13 22:43:56 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-02-13 22:43:56 +0100 |
commit | 9bd1e19d7f004b4da6a610b07e59f99d66bb7ec2 (patch) | |
tree | 30deaa24dbcc759bf03df3b1043ef1ca69f89089 /instrumentation/SanitizerCoveragePCGUARD.so.cc | |
parent | 6ce9230ed66dbd091001436cdab2fc1718e8e61e (diff) | |
download | afl++-9bd1e19d7f004b4da6a610b07e59f99d66bb7ec2.tar.gz |
added AFL_IGNORE_UNKNOWN_ENVS
Diffstat (limited to 'instrumentation/SanitizerCoveragePCGUARD.so.cc')
-rw-r--r-- | instrumentation/SanitizerCoveragePCGUARD.so.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/SanitizerCoveragePCGUARD.so.cc b/instrumentation/SanitizerCoveragePCGUARD.so.cc index 80c8f917..9b1351b0 100644 --- a/instrumentation/SanitizerCoveragePCGUARD.so.cc +++ b/instrumentation/SanitizerCoveragePCGUARD.so.cc @@ -1138,7 +1138,7 @@ void ModuleSanitizerCoverage::InjectTraceForGep( IRBuilder<> IRB(GEP); for (Use &Idx : GEP->indices()) if (!isa<ConstantInt>(Idx) && Idx->getType()->isIntegerTy()) - IRB.CreateCall(SanCovTraceGepFunction, + IRB.CreateCall(SanCovTraceGepFunction, {IRB.CreateIntCast(Idx, IntptrTy, true)}); } |