mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-07 04:40:43 +08:00
engine: server: fix bounds check in SV_GetFragmentSize
This commit is contained in:
@@ -122,9 +122,9 @@ int SV_GetFragmentSize( void *pcl, fragsize_t mode )
|
||||
int frmax = Q_atoi( Info_ValueForKey( cl->userinfo, "cl_frmax" ));
|
||||
|
||||
if( frmax < FRAGMENT_MIN_SIZE || frmax > FRAGMENT_MAX_SIZE )
|
||||
cl_frag_size = frmax;
|
||||
cl_frag_size /= 2; // add window for unreliable
|
||||
else
|
||||
cl_frag_size /= 2;// add window for unreliable
|
||||
cl_frag_size = frmax;
|
||||
}
|
||||
|
||||
return cl_frag_size - HEADER_BYTES;
|
||||
|
||||
Reference in New Issue
Block a user