Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1488)

Unified Diff: webrtc/p2p/base/turnserver.cc

Issue 2264343002: Fixing segfault caused by TurnServer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« webrtc/p2p/base/turnserver.h ('K') | « webrtc/p2p/base/turnserver.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/turnserver.cc
diff --git a/webrtc/p2p/base/turnserver.cc b/webrtc/p2p/base/turnserver.cc
index 7dd9e19f63d0f9abd5268218d3210d84f01ab33b..25d090c0800edc375aeae4895c31d95fe0d65ecd 100644
--- a/webrtc/p2p/base/turnserver.cc
+++ b/webrtc/p2p/base/turnserver.cc
@@ -525,10 +525,14 @@ void TurnServer::DestroyInternalSocket(rtc::AsyncPacketSocket* socket) {
InternalSocketMap::iterator iter = server_sockets_.find(socket);
if (iter != server_sockets_.end()) {
rtc::AsyncPacketSocket* socket = iter->first;
- // We must destroy the socket async to avoid invalidating the sigslot
- // callback list iterator inside a sigslot callback.
- rtc::Thread::Current()->Dispose(socket);
server_sockets_.erase(iter);
+ // We must destroy the socket async to avoid invalidating the sigslot
+ // callback list iterator inside a sigslot callback. (In other words,
+ // deleting an object from within a callback from that object).
+ pending_delete_sockets_.push_back(
+ std::unique_ptr<rtc::AsyncPacketSocket>(socket));
+ invoker_.AsyncInvoke<void>(RTC_FROM_HERE, rtc::Thread::Current(),
+ [this] { pending_delete_sockets_.clear(); });
pthatcher1 2016/08/23 00:36:55 I think the style guide said not to store lambdas.
Taylor Brandstetter 2016/08/23 01:11:20 The Chromium style guide says to never store *capt
pthatcher1 2016/08/23 01:15:32 Ah, thanks for correcting my poor memory.
Taylor Brandstetter 2016/08/23 23:31:12 I'll just bite the bullet, it's only a few extra l
}
}
« webrtc/p2p/base/turnserver.h ('K') | « webrtc/p2p/base/turnserver.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698