Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Patch one of the two buffer overflows #48

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Ecal/EcalVetoProcessor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ void EcalVetoProcessor::fillIsolatedHitMap(
// these ideas are only cell/module (must ignore layer)
std::vector<ldmx::EcalID> cellNbrIds = geometry_->getNN(id);

for (int k = 0; k < 6; k++) {
for (int k = 0; k < cellNbrIds.size(); k++) {
// update neighbor ID to the current layer
cellNbrIds[k] = ldmx::EcalID(id.layer(), cellNbrIds[k].module(),
cellNbrIds[k].cell());
Expand Down