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

Commit a6a5c3fa authored by Android Build Merger (Role)'s avatar Android Build Merger (Role)
Browse files

[automerger] Don't pad before calling writeInPlace(). am: 732132b7

Change-Id: Iccca7f34e2f59bc0c1971978bf87a76d7c123d3f
parents c6ae5cf9 732132b7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1012,7 +1012,7 @@ status_t Parcel::write(const FlattenableHelperInterface& val)
    if (err) return err;

    // payload
    void* const buf = this->writeInplace(pad_size(len));
    void* const buf = this->writeInplace(len);
    if (buf == NULL)
        return BAD_VALUE;