Skip to content

Commit 4c01e1f

Browse files
committed
DPL Analysis: fix case in which booleans are stored in more than one chunk
1 parent 2482a56 commit 4c01e1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/AnalysisSupport/src/TTreePlugin.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ auto readBoolValues = [](uint8_t* target, ReadOps& op, TBufferFile& rootBuffer)
209209
int readLast = 0;
210210
while (readEntries < op.rootBranchEntries) {
211211
auto beginValue = readLast;
212-
auto readLast = op.branch->GetBulkRead().GetBulkEntries(readEntries, rootBuffer);
212+
readLast = op.branch->GetBulkRead().GetBulkEntries(readEntries, rootBuffer);
213213
int size = readLast * op.listSize;
214214
readEntries += readLast;
215215
for (int i = beginValue; i < beginValue + size; ++i) {

0 commit comments

Comments
 (0)