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

Commit 1515ea10 authored by Casey Dahlin's avatar Casey Dahlin
Browse files

Fix build breakage due to extraneous dereference

Change-Id: If84d8b68a6af1e04a6085351655e588ebef65664
parent d83a34d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1758,7 +1758,7 @@ status_t Parcel::readString16(String16* pArg) const
    size_t len;
    const char16_t* str = readString16Inplace(&len);
    if (str) {
        *pArg->setTo(str, len);
        pArg->setTo(str, len);
        return 0;
    } else {
        *pArg = String16();