| Index: webrtc/pc/webrtcsession.cc
|
| diff --git a/webrtc/pc/webrtcsession.cc b/webrtc/pc/webrtcsession.cc
|
| index def02d408bca8abe484e5ad73036c7d7748da359..cfcc4871c3529f799ef790a1ad03ae4cd69f301e 100644
|
| --- a/webrtc/pc/webrtcsession.cc
|
| +++ b/webrtc/pc/webrtcsession.cc
|
| @@ -1274,9 +1274,9 @@ bool WebRtcSession::InsertDtmf(const std::string& track_id,
|
| return false;
|
| }
|
| uint32_t send_ssrc = 0;
|
| - if (!VERIFY(local_description() &&
|
| - GetAudioSsrcByTrackId(local_description()->description(),
|
| - track_id, &send_ssrc))) {
|
| + if (!(local_description() &&
|
| + GetAudioSsrcByTrackId(local_description()->description(),
|
| + track_id, &send_ssrc))) {
|
| LOG(LS_ERROR) << "InsertDtmf: Track does not exist: " << track_id;
|
| return false;
|
| }
|
|
|