mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Fix mixed-sign comparison warning in fix for 22797.
This commit is contained in:
parent
a25d97e530
commit
6a49e3360b
@ -1719,7 +1719,7 @@ set_max_file_descriptors(rlim_t limit, int *max_out)
|
||||
int bad = 1;
|
||||
#ifdef OPEN_MAX
|
||||
uint64_t try_limit = OPEN_MAX - ULIMIT_BUFFER;
|
||||
if (errno == EINVAL && try_limit < rlim.rlim_cur) {
|
||||
if (errno == EINVAL && try_limit < (uint64_t) rlim.rlim_cur) {
|
||||
/* On some platforms, OPEN_MAX is the real limit, and getrlimit() is
|
||||
* full of nasty lies. I'm looking at you, OSX 10.5.... */
|
||||
rlim.rlim_cur = try_limit;
|
||||
|
Loading…
Reference in New Issue
Block a user