Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0791013 authored by Andreas Gampe's avatar Andreas Gampe Committed by Android Git Automerger
Browse files

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

* commit 'de5fdd67':
  System/core: Use memmove
parents 818800e9 de5fdd67
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }