]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/tools/genrb/ustr.c
ICU-57163.0.1.tar.gz
[apple/icu.git] / icuSources / tools / genrb / ustr.c
index 91e6bd785ac511388f4c2e03f8f6cdb23e6e5785..0f4f67938b4b77521e5ef2c795ec50d145a51a06 100644 (file)
@@ -92,7 +92,7 @@ ustr_cpy(struct UString *dst,
     if(src->fChars == NULL || dst->fChars == NULL){
         return;
     }
-    uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength);
+    u_memcpy(dst->fChars, src->fChars, src->fLength);
     dst->fLength = src->fLength;
     dst->fChars[dst->fLength] = 0x0000;
 }