mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 22:48:18 +00:00
fixed crash with related to player count
This commit is contained in:
parent
9f88ec55fe
commit
6ff27c56e8
|
@ -881,7 +881,7 @@ void CClient::ProcessPacket(CNetChunk *pPacket)
|
|||
Info.m_MaxPlayers = str_toint(Up.GetString());
|
||||
|
||||
// don't add invalid info to the server browser list
|
||||
if(Info.m_NumPlayers > MAX_CLIENTS || Info.m_MaxPlayers > MAX_CLIENTS)
|
||||
if(Info.m_NumPlayers < 0 || Info.m_NumPlayers > MAX_CLIENTS || Info.m_MaxPlayers < 0 || Info.m_MaxPlayers > MAX_CLIENTS)
|
||||
return;
|
||||
|
||||
str_format(Info.m_aAddress, sizeof(Info.m_aAddress), "%d.%d.%d.%d:%d",
|
||||
|
|
Loading…
Reference in a new issue