mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-23 12:32:09 +00:00
fix wrong socket ID comparison, from /dev/humancontroller
This commit is contained in:
parent
2131536d07
commit
c16338cfa9
1 changed files with 1 additions and 1 deletions
|
@ -1533,7 +1533,7 @@ void NET_Config( qboolean enableNetworking ) {
|
|||
ip_socket = INVALID_SOCKET;
|
||||
}
|
||||
|
||||
if(multicast6_socket)
|
||||
if(multicast6_socket != INVALID_SOCKET)
|
||||
{
|
||||
if(multicast6_socket != ip6_socket)
|
||||
closesocket(multicast6_socket);
|
||||
|
|
Loading…
Reference in a new issue