| Index: webrtc/base/autodetectproxy.cc
|
| diff --git a/webrtc/base/autodetectproxy.cc b/webrtc/base/autodetectproxy.cc
|
| index 22950fb2b3c1102f0ce46a93f96bed17e2e3ae4e..e6174ec96b7544bc082f0e3b03a0c8bb4e11e6aa 100644
|
| --- a/webrtc/base/autodetectproxy.cc
|
| +++ b/webrtc/base/autodetectproxy.cc
|
| @@ -247,7 +247,7 @@ void AutoDetectProxy::OnConnectEvent(AsyncSocket * socket) {
|
|
|
| void AutoDetectProxy::OnReadEvent(AsyncSocket * socket) {
|
| char data[257];
|
| - int len = socket_->Recv(data, 256);
|
| + int len = socket_->Recv(data, 256, nullptr);
|
| if (len > 0) {
|
| data[len] = 0;
|
| LOG(LS_VERBOSE) << "AutoDetectProxy read " << len << " bytes";
|
|
|