Skip to content

Commit f76b5c7

Browse files
committed
Reinstate __checkint_{u,}int32_mul in CFSortFunctions (prevent reverting of @uraimo's #1396).
1 parent ba09c4f commit f76b5c7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

CoreFoundation/Base.subproj/CFSortFunctions.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ enum {
5252

5353
#define __checkint_int64_mul(x, y, err) (x * y)
5454
#define __checkint_uint64_add(x, y, err) (x + y)
55+
#define __checkint_int32_mul(x,y,err) (x * y)
56+
#define __checkint_uint32_add(x,y,err) (x + y)
5557

5658
#endif
5759

0 commit comments

Comments
 (0)