| Index: content/renderer/media/user_media_client_impl.cc
|
| diff --git a/content/renderer/media/user_media_client_impl.cc b/content/renderer/media/user_media_client_impl.cc
|
| index 68c80ea34830ef053243ca8bf8a5d01c43fa436c..1a8df36355cadac04052adc7587c0a3959eab7b7 100644
|
| --- a/content/renderer/media/user_media_client_impl.cc
|
| +++ b/content/renderer/media/user_media_client_impl.cc
|
| @@ -753,7 +753,8 @@ void UserMediaClientImpl::OnDevicesEnumerated(
|
| DVLOG(1) << "UserMediaClientImpl::OnDevicesEnumerated(" << request_id << ")";
|
|
|
| MediaDevicesRequestInfo* request = FindMediaDevicesRequestInfo(request_id);
|
| - DCHECK(request);
|
| + if (!request)
|
| + return;
|
|
|
| if (request_id == request->audio_input_request_id) {
|
| request->has_audio_input_returned = true;
|
|
|