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

Commit a763da3f authored by Casey Dahlin's avatar Casey Dahlin Committed by Gerrit Code Review
Browse files

Merge "Fix build breakage due to extraneous dereference"

parents d83a34d8 1515ea10
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();