engine: server: fix bounds check in SV_GetFragmentSize
This commit is contained in:
parent
4543008012
commit
f31e9ae19e
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue