commit cea1a4e19d1ed16cf8509554a52fe73a001fef46 Author: Nick Mathewson nickm@torproject.org Date: Fri Dec 23 09:50:44 2016 -0500
This is no longer inline. --- src/common/util.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/common/util.c b/src/common/util.c index d02eb66..824b4fb 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -187,8 +187,9 @@ tor_malloc_zero_(size_t size DMALLOC_PARAMS) * 0xfffe0001. */ #define SQRT_SIZE_MAX_P1 (((size_t)1) << (sizeof(size_t)*4))
-/** Return non-zero if and only if the product of the arguments is exact. */ -inline int +/** Return non-zero if and only if the product of the arguments is exact, + * and cannot overflow. */ +int size_mul_check(const size_t x, const size_t y) { /* This first check is equivalent to
tor-commits@lists.torproject.org