Browse Source
Merge pull request #583 from SashaXser/master
Фиксы от CodeQL
pull/617/head
bol-van
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
tpws/tpws.c
|
|
@ -1087,7 +1087,7 @@ static bool read_system_maxfiles(rlim_t *maxfile) |
|
|
|
return false; |
|
|
|
n=fscanf(F,"%ju",&um); |
|
|
|
fclose(F); |
|
|
|
if (!n) return false; |
|
|
|
if (n != 1) return false; |
|
|
|
*maxfile = (rlim_t)um; |
|
|
|
return true; |
|
|
|
#elif defined(BSD) |
|
|
@ -1132,7 +1132,7 @@ static bool set_ulimit(void) |
|
|
|
// additional 1/2 for unpaired remote legs sending buffers
|
|
|
|
// 16 for listen_fd, epoll, hostlist, ...
|
|
|
|
#ifdef SPLICE_PRESENT |
|
|
|
fdmax = (params.nosplice ? 2 : (params.tamper && !params.tamper_lim ? 4 : 6)) * params.maxconn; |
|
|
|
fdmax = (rlim_t)(params.nosplice ? 2 : (params.tamper && !params.tamper_lim ? 4 : 6)) * (rlim_t)params.maxconn; |
|
|
|
#else |
|
|
|
fdmax = 2 * params.maxconn; |
|
|
|
#endif |
|
|
|