am de5fdd67: am 6ef68b55: Merge "System/core: Use memmove"

* commit 'de5fdd67730def6d3002ae56b27bb349e2ad4d24':
  System/core: Use memmove
This commit is contained in:
Andreas Gampe 2014-11-14 19:18:14 +00:00 committed by Android Git Automerger
commit c0791013d7

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;
}