Skip to content

Commit

Permalink
Fix CID 134295
Browse files Browse the repository at this point in the history
  • Loading branch information
TimePath authored and Kangz committed Feb 6, 2016
1 parent 31077a4 commit 169550f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/src/engine/client/cl_parse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ void CL_ParseServerMessage( msg_t *msg )

cmd = MSG_ReadByte( msg );

if ( cmd == svc_EOF )
if ( cmd < 0 || cmd == svc_EOF )
{
SHOWNET( msg, "END OF MESSAGE" );
break;
Expand Down

0 comments on commit 169550f

Please sign in to comment.