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

Commit b87a6a51 authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge "Fix parcel fuzzer when mixing RPC and kernel binder." into main am: a42f727d

parents c2cdd891 a42f727d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -111,7 +111,9 @@ void fillRandomParcel(Parcel* p, FuzzedDataProvider&& provider, RandomParcelOpti
                    } else {
                        binder = getRandomBinder(&provider);
                    }
                    CHECK(OK == p->writeStrongBinder(binder));

                    // may fail if mixing kernel binder and RPC binder
                    (void) p->writeStrongBinder(binder);
                },
        });