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

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

am 0e4669c8: am f1f0c873: Fix bug in TextLayoutCacheKey handling embedded nulls.

* commit '0e4669c8':
  Fix bug in TextLayoutCacheKey handling embedded nulls.
parents 5a21ca5b 0e4669c8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -261,7 +261,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);
    }
}