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

Commit a5bcc959 authored by Casey Dahlin's avatar Casey Dahlin Committed by Alex Deymo
Browse files

Fix build breakage due to extraneous dereference

(cherry picked from commit 1515ea10)

Change-Id: I6dd029f5c2a07cfe593da40906f3402ef7a175cc
parent 08bb145a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1782,7 +1782,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();