Skip to content

Commit 4a7b987

Browse files
committed
Disable check for invalid areamask size
This check is not in ET final normal release, but it is in the GPL source release. Affects asdrun1 Refs #41
1 parent b7302e3 commit 4a7b987

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/cl_parse.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,8 @@ static void CL_ParseSnapshot( msg_t *msg ) {
397397

398398
if ( newSnap.areabytes > sizeof(newSnap.areamask) )
399399
{
400-
Com_Error( ERR_DROP,"CL_ParseSnapshot: Invalid size %d for areamask", newSnap.areabytes );
401-
return;
400+
//Com_Error( ERR_DROP,"CL_ParseSnapshot: Invalid size %d for areamask", newSnap.areabytes );
401+
//return;
402402
}
403403

404404
MSG_ReadData( msg, &newSnap.areamask, newSnap.areabytes );

0 commit comments

Comments
 (0)