| Index: runtime/bin/socket_linux.cc
|
| diff --git a/runtime/bin/socket_linux.cc b/runtime/bin/socket_linux.cc
|
| index 37ceda5726bb06433321375472ef1d5a22d3d970..05f225bd45728cb8fa16c40c16cd270c40a31be2 100644
|
| --- a/runtime/bin/socket_linux.cc
|
| +++ b/runtime/bin/socket_linux.cc
|
| @@ -176,7 +176,7 @@ intptr_t ServerSocket::CreateBindListen(const char* host,
|
| intptr_t fd;
|
| struct sockaddr_in server_address;
|
|
|
| - in_addr_t s_addr = TEMP_FAILURE_RETRY(inet_addr(host));
|
| + in_addr_t s_addr = inet_addr(host);
|
| if (s_addr == INADDR_NONE) {
|
| return -5;
|
| }
|
|
|