Merge "System/core: Use memmove"

This commit is contained in:
Andreas Gampe 2014-11-14 00:28:02 +00:00 committed by Gerrit Code Review
commit 6ef68b55b7
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ bool String8::removeAll(const char* other) {
next = len;
}
memcpy(buf + tail, buf + index + skip, next - index - skip);
memmove(buf + tail, buf + index + skip, next - index - skip);
tail += next - index - skip;
index = next;
}