Skip to content

Commit

Permalink
Merge pull request #34758 from iarspider/patch-4
Browse files Browse the repository at this point in the history
[GCC 11] Fix error "this pointer is null" in DQM/SiStripCommissioningDbClients
  • Loading branch information
cmsbuild authored Aug 10, 2021
2 parents 9ac280b + 87f163b commit 7865b72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ void FastFedCablingHistosUsingDb::connections(SiStripConfigDb::DeviceDescription
if (idet == detids.end()) {
continue;
}
if (idet->second) {
if (!idet->second) {
continue;
}

Expand Down

0 comments on commit 7865b72

Please sign in to comment.