Skip to content

Commit

Permalink
Merge pull request #39263 from cecilecaillol/l1t-asan
Browse files Browse the repository at this point in the history
[L1T] fix asan runtime errors in DTTrigger Phase-2
  • Loading branch information
cmsbuild authored Sep 1, 2022
2 parents 9ad28c4 + cb3b08a commit 3b039e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion L1Trigger/DTTriggerPhase2/src/MuonPathAssociator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void MuonPathAssociator::correlateMPaths(edm::Handle<DTDigiCollection> dtdigis,
int sl1 = 0;
int sl3 = 0;
for (auto SL1metaPrimitive = SL1metaPrimitives.begin(); SL1metaPrimitive != SL1metaPrimitives.end();
++SL1metaPrimitive, sl1++, sl3 = -1) {
++SL1metaPrimitive, sl1++, sl3 = 0) {
if (clean_chi2_correlation_)
at_least_one_correlation = false;
for (auto SL3metaPrimitive = SL3metaPrimitives.begin(); SL3metaPrimitive != SL3metaPrimitives.end();
Expand Down

0 comments on commit 3b039e0

Please sign in to comment.