commit | 4df2423a947bcd3f024cc3d3a1a315a8dc428598 | [log] [tgz] |
---|---|---|
author | The Android Open Source Project <initial-contribution@android.com> | Thu Mar 05 14:34:35 2009 -0800 |
committer | The Android Open Source Project <initial-contribution@android.com> | Thu Mar 05 14:34:35 2009 -0800 |
tree | e7dac2c5a367b169e7f05a36058cf470e93f003b | |
parent | c474dec3ffa1c0fe37edb3e701684188f7e8e7bc [diff] [blame] |
auto import from //depot/cupcake/@136594
diff --git a/libs/utils/String16.cpp b/libs/utils/String16.cpp index 1f81cad..ae0ae1e 100644 --- a/libs/utils/String16.cpp +++ b/libs/utils/String16.cpp
@@ -388,7 +388,7 @@ ->editResize((len+1)*sizeof(char16_t)); if (buf) { char16_t* str = (char16_t*)buf->data(); - memcpy(str, other, len*sizeof(char16_t)); + memmove(str, other, len*sizeof(char16_t)); str[len] = 0; mString = str; return NO_ERROR;