зеркало из https://github.com/mozilla/gecko-dev.git
Bug 820671 Make PCImpl a tombstone if mMedia is null r=jesup
This commit is contained in:
Родитель
596b7622b0
Коммит
1fd24dc33b
|
@ -1040,7 +1040,12 @@ PeerConnectionWrapper::PeerConnectionWrapper(const std::string& handle)
|
|||
return;
|
||||
}
|
||||
|
||||
impl_ = PeerConnectionCtx::GetInstance()->mPeerConnections[handle];
|
||||
PeerConnectionImpl *impl = PeerConnectionCtx::GetInstance()->mPeerConnections[handle];
|
||||
|
||||
if (!impl->media())
|
||||
return;
|
||||
|
||||
impl_ = impl;
|
||||
}
|
||||
|
||||
const std::string&
|
||||
|
|
Загрузка…
Ссылка в новой задаче