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

Commit 20b74d19 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Validate AttributionSource during unparceling." into sc-dev am: fee33811 am: 0a31518c

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15275356

Change-Id: Ie29230201b4455228f10c3ea8128294faad6596b
parents 0c9b0f3c 0a31518c
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -152,6 +152,10 @@ public final class AttributionSource implements Parcelable {


    AttributionSource(@NonNull Parcel in) {
    AttributionSource(@NonNull Parcel in) {
        this(AttributionSourceState.CREATOR.createFromParcel(in));
        this(AttributionSourceState.CREATOR.createFromParcel(in));

        // Since we just unpacked this object as part of it transiting a Binder
        // call, this is the perfect time to enforce that its UID can be trusted
        enforceCallingUid();
    }
    }


    /** @hide */
    /** @hide */