mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-29 16:24:16 +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" ));
|
int frmax = Q_atoi( Info_ValueForKey( cl->userinfo, "cl_frmax" ));
|
||||||
|
|
||||||
if( frmax < FRAGMENT_MIN_SIZE || frmax > FRAGMENT_MAX_SIZE )
|
if( frmax < FRAGMENT_MIN_SIZE || frmax > FRAGMENT_MAX_SIZE )
|
||||||
cl_frag_size = frmax;
|
cl_frag_size /= 2; // add window for unreliable
|
||||||
else
|
else
|
||||||
cl_frag_size /= 2;// add window for unreliable
|
cl_frag_size = frmax;
|
||||||
}
|
}
|
||||||
|
|
||||||
return cl_frag_size - HEADER_BYTES;
|
return cl_frag_size - HEADER_BYTES;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user