engine: server: fix bounds check in SV_GetFragmentSize

This commit is contained in:
Alibek Omarov 2021-06-01 18:35:38 +03:00
parent 4543008012
commit f31e9ae19e
1 changed files with 2 additions and 2 deletions

View File

@ -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;