Commit 6d8c2d74 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

wininet/tests: Do not compare the return value of socket() with 0. Use INVALID_SOCKET instead.

parent 312a1db3
......@@ -1228,7 +1228,8 @@ struct server_info {
static DWORD CALLBACK server_thread(LPVOID param)
{
struct server_info *si = param;
int r, s, c, i, on;
int r, c, i, on;
SOCKET s;
struct sockaddr_in sa;
char buffer[0x100];
WSADATA wsaData;
......@@ -1237,7 +1238,7 @@ static DWORD CALLBACK server_thread(LPVOID param)
WSAStartup(MAKEWORD(1,1), &wsaData);
s = socket(AF_INET, SOCK_STREAM, 0);
if (s<0)
if (s == INVALID_SOCKET)
return 1;
on = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment