Skip to content

Commit 753862e

Browse files
committed
DPL: avoid unintialised member
Not actually used in this particular case, however better safe than sorry.
1 parent 96dafaa commit 753862e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/DataRelayer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ DataRelayer::RelayChoice
678678
}
679679
index.publishSlot(slot);
680680
index.markAsDirty(slot, true);
681-
return RelayChoice{.type = RelayChoice::Type::WillRelay};
681+
return RelayChoice{.type = RelayChoice::Type::WillRelay, .timeslice = timeslice};
682682
}
683683
O2_BUILTIN_UNREACHABLE();
684684
}

0 commit comments

Comments
 (0)