Skip to content

Commit e3fdb85

Browse files
authored
DPL: fix reading of booleans from branches with more than 2 baskets. (#14231)
1 parent 77beb78 commit e3fdb85

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
@@ -208,7 +208,7 @@ auto readBoolValues = [](uint8_t* target, ReadOps& op, TBufferFile& rootBuffer)
208208
memset(target, 0, op.targetBuffer->size());
209209
int readLast = 0;
210210
while (readEntries < op.rootBranchEntries) {
211-
auto beginValue = readLast;
211+
auto beginValue = readEntries;
212212
readLast = op.branch->GetBulkRead().GetBulkEntries(readEntries, rootBuffer);
213213
int size = readLast * op.listSize;
214214
readEntries += readLast;

0 commit comments

Comments
 (0)