diff options
| author | vanhauser-thc <vh@thc.org> | 2022-08-03 10:06:52 +0200 |
|---|---|---|
| committer | vanhauser-thc <vh@thc.org> | 2022-08-03 10:06:52 +0200 |
| commit | 6056d4b140f0665c6a701cada9166379be3435ac (patch) | |
| tree | 3a0007a3e8a07b58c4bef927d9c52e0043aa8466 /instrumentation/SanitizerCoveragePCGUARD.so.cc | |
| parent | d745da0c93a650785411a7cf05b67174a0ef4544 (diff) | |
| download | afl++-6056d4b140f0665c6a701cada9166379be3435ac.tar.gz | |
fix pcguard vector select instrumentation
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 f8ced8fc..e22c9ead 100644 --- a/instrumentation/SanitizerCoveragePCGUARD.so.cc +++ b/instrumentation/SanitizerCoveragePCGUARD.so.cc @@ -902,7 +902,7 @@ bool ModuleSanitizerCoverageAFL::InjectCoverage( if (tt) { cnt_sel++; - cnt_sel_inc += tt->getElementCount().getKnownMinValue(); + cnt_sel_inc += (tt->getElementCount().getKnownMinValue() * 2); } |
