Merge pull request #1225 from Diapolo/net_cpp_if_clause

fix an incorrect if-clause in net.cpp
This commit is contained in:
Jeff Garzik 2012-05-09 07:50:27 -07:00
commit d54e6e8359
1 changed files with 1 additions and 1 deletions

View File

@ -716,7 +716,7 @@ void ThreadSocketHandler2(void* parg)
if (nSelect == SOCKET_ERROR)
{
int nErr = WSAGetLastError();
if (hSocketMax > (SOCKET) -1)
if (hSocketMax != INVALID_SOCKET)
{
printf("socket select error %d\n", nErr);
for (unsigned int i = 0; i <= hSocketMax; i++)