Skip to content
Snippets Groups Projects
Unverified Commit 60194fac authored by Sébastien Blin's avatar Sébastien Blin
Browse files

p2p: protect listeners

Change-Id: Ic02b37fffb6834261c4d8aa9d7c1a68eb72af84e
parent 9fce93c5
Branches
No related tags found
No related merge requests found
......@@ -287,7 +287,12 @@ public:
~ClientConnector()
{
for (auto& cb : listeners_)
decltype(listeners_) listeners;
{
std::lock_guard<std::mutex> lk {listenersMutex_};
listeners = listeners_;
}
for (auto& cb : listeners)
cb(nullptr);
connection_.reset();
}
......@@ -300,7 +305,7 @@ public:
{
if (!connected_) {
std::lock_guard<std::mutex> lk {listenersMutex_};
listeners_.push_back(cb);
listeners_.emplace_back(cb);
} else {
cb(connection_.get());
}
......@@ -481,7 +486,13 @@ private:
return;
parent->stateChanged(peer, id, code);
});
for (auto& cb : listeners_) {
decltype(listeners_) listeners;
{
std::lock_guard<std::mutex> lk {listenersMutex_};
listeners = listeners_;
}
for (auto& cb : listeners) {
cb(connection_.get());
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment