]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/intltest/colldata.cpp
ICU-57149.0.1.tar.gz
[apple/icu.git] / icuSources / test / intltest / colldata.cpp
index 79d93654926d40027b1ff811e11e870962390e31..0eb74af682213639abc52c29aa83e0994b5288f0 100644 (file)
@@ -32,9 +32,9 @@
 
 #include "colldata.h"
 
-#define NEW_ARRAY(type, count) (type *) uprv_malloc((count) * sizeof(type))
+#define NEW_ARRAY(type, count) (type *) uprv_malloc((size_t)(count) * sizeof(type))
 #define DELETE_ARRAY(array) uprv_free((void *) (array))
-#define ARRAY_COPY(dst, src, count) uprv_memcpy((void *) (dst), (void *) (src), (count) * sizeof (src)[0])
+#define ARRAY_COPY(dst, src, count) uprv_memcpy((void *) (dst), (void *) (src), (size_t)(count) * sizeof (src)[0])
 
 CEList::CEList(UCollator *coll, const UnicodeString &string, UErrorCode &status)
     : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0)