[tor-commits] [tor/release-0.3.2] Add a cast to avoid a signed/unsigned comparison

nickm at torproject.org nickm at torproject.org
Sun Feb 11 22:01:10 UTC 2018


commit 0bfd5a659777688798722a20f894797a4f4b54f0
Author: Nick Mathewson <nickm at torproject.org>
Date:   Wed Jan 17 09:06:32 2018 -0500

    Add a cast to avoid a signed/unsigned comparison
---
 src/common/compat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/compat.c b/src/common/compat.c
index a88e9b514..4ac443c13 100644
--- a/src/common/compat.c
+++ b/src/common/compat.c
@@ -1723,7 +1723,7 @@ set_max_file_descriptors(rlim_t limit, int *max_out)
     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 = MIN(try_limit, rlim.rlim_cur);
+      rlim.rlim_cur = MIN((rlim_t) try_limit, rlim.rlim_cur);
       if (setrlimit(RLIMIT_NOFILE, &rlim) == 0) {
         if (rlim.rlim_cur < (rlim_t)limit) {
           log_warn(LD_CONFIG, "We are limited to %lu file descriptors by "





More information about the tor-commits mailing list