Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit ea3dd63

Browse files
committed
Bug 1430707: Don't MOZ_CRASH when conduit operations fail. r=drno
MozReview-Commit-ID: 32nYEJ3hht2 --HG-- extra : rebase_source : c18a30c442da5ca646943d7ecee37f0cd06d4c71
1 parent 79481cf commit ea3dd63

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

media/webrtc/signaling/src/peerconnection/PeerConnectionMedia.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -487,14 +487,12 @@ PeerConnectionMedia::UpdateMediaPipelines()
487487
for (RefPtr<TransceiverImpl>& transceiver : mTransceivers) {
488488
nsresult rv = transceiver->UpdateConduit();
489489
if (NS_FAILED(rv)) {
490-
MOZ_CRASH();
491490
return rv;
492491
}
493492

494493
if (!transceiver->IsVideo()) {
495494
rv = transceiver->SyncWithMatchingVideoConduits(mTransceivers);
496495
if (NS_FAILED(rv)) {
497-
MOZ_CRASH();
498496
return rv;
499497
}
500498
// TODO: If there is no audio, we should probably de-sync. However, this

0 commit comments

Comments
 (0)