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

Alexandre Julliard julliard at winehq.org
Tue Nov 27 09:54:29 CST 2007


Module: wine
Branch: master
Commit: 6d8c2d744b7bba19e1d25a11dfb0f976828f2bb6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6d8c2d744b7bba19e1d25a11dfb0f976828f2bb6

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Mon Nov 26 23:07:34 2007 +0100

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

---

 dlls/wininet/tests/http.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/wininet/tests/http.c b/dlls/wininet/tests/http.c
index 4a28db9..ec2df72 100644
--- a/dlls/wininet/tests/http.c
+++ b/dlls/wininet/tests/http.c
@@ -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;




More information about the wine-cvs mailing list