diff options
author | Fedor <fedor@mail.ru> | 2020-05-27 09:01:53 +0300 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-06-01 10:59:15 +0200 |
commit | ccff4610c5d77e0257d90be52443c5082ade0fb5 (patch) | |
tree | a7eb62b8d4d84c98276673fde1f46ba26b83d556 | |
parent | 15a1f78f8bf204cc7b65fdd3783d90d643fea6f4 (diff) | |
download | uxp-ccff4610c5d77e0257d90be52443c5082ade0fb5.tar.gz |
Issue #1558 - Prevent null deref crash in WebrtcVideoConduit DTOR
-rwxr-xr-x | media/webrtc/signaling/src/media-conduit/VideoConduit.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/media/webrtc/signaling/src/media-conduit/VideoConduit.cpp b/media/webrtc/signaling/src/media-conduit/VideoConduit.cpp index b406fded58..95f599be46 100755 --- a/media/webrtc/signaling/src/media-conduit/VideoConduit.cpp +++ b/media/webrtc/signaling/src/media-conduit/VideoConduit.cpp @@ -521,6 +521,8 @@ WebrtcVideoConduit::DeleteStreams() mVideoCodecStat->EndOfCallStats(); } mVideoCodecStat = nullptr; + //This does Release AudioConduit before mPtrViEBase set nullptr. + SyncTo(nullptr); // We can't delete the VideoEngine until all these are released! // And we can't use a Scoped ptr, since the order is arbitrary mPtrViEBase = nullptr; @@ -543,6 +545,11 @@ WebrtcVideoConduit::SyncTo(WebrtcAudioConduit *aConduit) { CSFLogDebug(logTag, "%s Synced to %p", __FUNCTION__, aConduit); + if (!mPtrViEBase) { + // ViEBase has already been released; we no longer have a conduit. + mSyncedTo = nullptr; + return; + } // SyncTo(value) syncs to the AudioConduit, and if already synced replaces // the current sync target. SyncTo(nullptr) cancels any existing sync and // releases the strong ref to AudioConduit. |