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

Commit 0e4669c8 authored by Jeff Brown's avatar Jeff Brown Committed by Android Git Automerger
Browse files

am f1f0c873: Fix bug in TextLayoutCacheKey handling embedded nulls.

* commit 'f1f0c873':
  Fix bug in TextLayoutCacheKey handling embedded nulls.
parents 811959f4 f1f0c873
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -249,7 +249,7 @@ TextLayoutCacheKey::TextLayoutCacheKey(const TextLayoutCacheKey& other) :
        flags(other.flags),
        hinting(other.hinting) {
    if (other.text) {
        textCopy.setTo(other.text);
        textCopy.setTo(other.text, other.contextCount);
    }
}