]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/unesctrn.cpp
ICU-59180.0.1.tar.gz
[apple/icu.git] / icuSources / i18n / unesctrn.cpp
index c950362c413a7e2be4a000d31571c49d4c3e8649..86c55d138b0c80ee45ff0d4a6b51a93d7ba8736a 100644 (file)
@@ -1,3 +1,5 @@
+// © 2016 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html
 /*
  **********************************************************************
  *   Copyright (c) 2001-2011, International Business Machines
@@ -85,7 +87,7 @@ static UChar* copySpec(const UChar* spec) {
     UChar *result = (UChar *)uprv_malloc(len*sizeof(UChar));
     // Check for memory allocation error. 
     if (result != NULL) {
-       uprv_memcpy(result, spec, len*sizeof(result[0]));
+       uprv_memcpy(result, spec, (size_t)len*sizeof(result[0]));
     }
     return result;
 }