mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-17 18:40:02 +00:00
engine: server: fix bounds check in SV_GetFragmentSize
This commit is contained in:
parent
4543008012
commit
f31e9ae19e
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user