fix an error in tcp_select

This commit is contained in:
jsorg71 2006-03-25 17:12:15 +00:00
parent 65ed54cc95
commit da4f53d48c
1 changed files with 4 additions and 0 deletions

View File

@ -429,6 +429,10 @@ g_tcp_select(int sck1, int sck2)
rv = rv | 2;
}
}
else
{
rv = 0;
}
return rv;
}