From 0c369e605ed0fcafb6e859bfd9b963335e4868ac Mon Sep 17 00:00:00 2001 From: Umberto Raimondi Date: Wed, 17 Jan 2018 15:21:50 -0500 Subject: [PATCH] Added missing __checkint macros for 32bit systems --- CoreFoundation/Base.subproj/CFSortFunctions.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CoreFoundation/Base.subproj/CFSortFunctions.c b/CoreFoundation/Base.subproj/CFSortFunctions.c index 05bd43ef91..88781c1619 100644 --- a/CoreFoundation/Base.subproj/CFSortFunctions.c +++ b/CoreFoundation/Base.subproj/CFSortFunctions.c @@ -52,6 +52,8 @@ enum { #define __checkint_int64_mul(x, y, err) (x * y) #define __checkint_uint64_add(x, y, err) (x + y) +#define __checkint_int32_mul(x,y,err) (x * y) +#define __checkint_uint32_add(x,y,err) (x + y) #endif