| Index: mojo/services/network/tcp_bound_socket_impl.cc
|
| diff --git a/mojo/services/network/tcp_bound_socket_impl.cc b/mojo/services/network/tcp_bound_socket_impl.cc
|
| index 1d8669fb86c9a08521b4a6e3ad7247810c8c3f32..7fe865bdfc24863e39f0128c495ae5bf5520b3ab 100644
|
| --- a/mojo/services/network/tcp_bound_socket_impl.cc
|
| +++ b/mojo/services/network/tcp_bound_socket_impl.cc
|
| @@ -26,7 +26,7 @@ TCPBoundSocketImpl::~TCPBoundSocketImpl() {
|
| int TCPBoundSocketImpl::Bind(NetAddressPtr local_address) {
|
| net::IPEndPoint end_point = local_address.To<net::IPEndPoint>();
|
|
|
| - socket_.reset(new net::TCPSocket(NULL, net::NetLog::Source()));
|
| + socket_.reset(new net::TCPSocket(NULL, NULL, net::NetLog::Source()));
|
| int result = socket_->Open(end_point.GetFamily());
|
| if (result != net::OK)
|
| return result;
|
|
|