mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-02-21 02:50:56 +00:00
fix an inconsistency devkev found. It's not (yet) a problem in our code, but it was causing sefaults in in qwf.
This commit is contained in:
parent
95393325ad
commit
b7ebd7efa6
1 changed files with 1 additions and 1 deletions
|
@ -1619,7 +1619,7 @@ void SV_ExecuteClientMessage (client_t *cl)
|
||||||
|
|
||||||
c = MSG_ReadByte ();
|
c = MSG_ReadByte ();
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
break;
|
return;
|
||||||
|
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue