Skip to content
Snippets Groups Projects
Commit 435ea7dc authored by Monster Iestyn's avatar Monster Iestyn
Browse files

Merge branch 'invalid-node-hotfix_master' into 'master'

Invalid node hotfix master

Quick hotfix to prevent `Net_CloseConnection` from crashing if the node's number is invalid.

See merge request !179
parents 4008cae5 96c63bf9
No related branches found
No related tags found
No related merge requests found
......@@ -716,6 +716,12 @@ void Net_CloseConnection(INT32 node)
if (!node)
return;
if (node < 0 || node >= MAXNETNODES) // prevent invalid nodes from crashing the game
{
CONS_Alert(CONS_WARNING, M_GetText("Net_CloseConnection: invalid node %d detected!\n"), node);
return;
}
nodes[node].flags |= NF_CLOSE;
// try to Send ack back (two army problem)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment