Browse Source

Merge pull request #1 from SashaXser/alert-autofix-1

Fix code scanning alert no. 1: Multiplication result converted to larger type
pull/583/head
SashaXser 6 months ago
committed by GitHub
parent
commit
fc200ac629
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      tpws/tpws.c

2
tpws/tpws.c

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

Loading…
Cancel
Save