]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/ustring.cpp
ICU-57149.0.1.tar.gz
[apple/icu.git] / icuSources / common / ustring.cpp
index f6cccc7c6340e90c59fb69bd262eb53f5f1e4f1e..aa395035332bd7ac91d96a797831803ab9ef33f0 100644 (file)
@@ -1113,7 +1113,7 @@ u_strHasMoreChar32Than(const UChar *s, int32_t length, int32_t number) {
 U_CAPI UChar * U_EXPORT2
 u_memcpy(UChar *dest, const UChar *src, int32_t count) {
     if(count > 0) {
-        uprv_memcpy(dest, src, count*U_SIZEOF_UCHAR);
+        uprv_memcpy(dest, src, (size_t)count*U_SIZEOF_UCHAR);
     }
     return dest;
 }
@@ -1121,7 +1121,7 @@ u_memcpy(UChar *dest, const UChar *src, int32_t count) {
 U_CAPI UChar * U_EXPORT2
 u_memmove(UChar *dest, const UChar *src, int32_t count) {
     if(count > 0) {
-        uprv_memmove(dest, src, count*U_SIZEOF_UCHAR);
+        uprv_memmove(dest, src, (size_t)count*U_SIZEOF_UCHAR);
     }
     return dest;
 }