Skip to content
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
4 changes: 4 additions & 0 deletions lager/detail/nodes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,10 @@ class reader_node : public observable_reader_node<T>
bool garbage = false;

this->observers()(last_);
// We cannot use ranged-for here because children might
// change as a result of notify(). This can invalidate
// the iterators on children, causing undefined behaviors.
// See also https://github.com/arximboldi/lager/pull/212
const auto& children = this->children();
for (size_t i = 0, size = children.size(); i < size; ++i) {
if (auto child = children[i].lock()) {
Expand Down
Loading