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

Commit 00c648d0 authored by Jing Ji's avatar Jing Ji
Browse files

Fix the parceling of the ServiceStartArgs

Bug: 283391058
Test: atest CtsAppTestCases:ServiceTest
Change-Id: Ifd95f0eccc0d2a960efee26d9af337352b5187c7
parent d28b311a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ public class ServiceStartArgs implements Parcelable {
    public void writeToParcel(Parcel out, int flags) {
        out.writeInt(taskRemoved ? 1 : 0);
        out.writeInt(startId);
        out.writeInt(flags);
        out.writeInt(this.flags);
        if (args != null) {
            out.writeInt(1);
            args.writeToParcel(out, 0);