mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
ws2_32: Handle NULL argument in inet_addr.
This commit is contained in:
parent
cdca32c12e
commit
bde4e36208
2 changed files with 12 additions and 2 deletions
|
@ -2175,6 +2175,7 @@ int WINAPI WSAHtons(SOCKET s, WS_u_short hostshort, WS_u_short *lpnetshort)
|
|||
*/
|
||||
WS_u_long WINAPI WS_inet_addr(const char *cp)
|
||||
{
|
||||
if (!cp) return INADDR_NONE;
|
||||
return inet_addr(cp);
|
||||
}
|
||||
|
||||
|
|
|
@ -1491,7 +1491,7 @@ done:
|
|||
closesocket(server_socket);
|
||||
}
|
||||
|
||||
static void test_extendedSocketOptions()
|
||||
static void test_extendedSocketOptions(void)
|
||||
{
|
||||
WSADATA wsa;
|
||||
SOCKET sock;
|
||||
|
@ -1565,7 +1565,7 @@ static void test_extendedSocketOptions()
|
|||
WSACleanup();
|
||||
}
|
||||
|
||||
static void test_getsockname()
|
||||
static void test_getsockname(void)
|
||||
{
|
||||
WSADATA wsa;
|
||||
SOCKET sock;
|
||||
|
@ -1612,6 +1612,14 @@ static void test_getsockname()
|
|||
WSACleanup();
|
||||
}
|
||||
|
||||
static void test_inet_addr(void)
|
||||
{
|
||||
u_long addr;
|
||||
|
||||
addr = inet_addr(NULL);
|
||||
ok(addr == INADDR_NONE, "inet_addr succeeded unexpectedly\n");
|
||||
}
|
||||
|
||||
/**************** Main program ***************/
|
||||
|
||||
START_TEST( sock )
|
||||
|
@ -1643,6 +1651,7 @@ START_TEST( sock )
|
|||
test_select();
|
||||
test_accept();
|
||||
test_getsockname();
|
||||
test_inet_addr();
|
||||
|
||||
Exit();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue