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

Commit 03a515ae authored by Hall Liu's avatar Hall Liu Committed by android-build-merger
Browse files

Merge "Use proper classloader when reading from parcel"

am: d3cb6380

Change-Id: I79c21859aa657b7a61e5cc8e7d60f79f736f34be
parents e6fee297 d3cb6380
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -351,7 +351,7 @@ public class ImsCallProfile implements Parcelable {
        mServiceType = in.readInt();
        mCallType = in.readInt();
        mCallExtras = in.readBundle();
        mMediaProfile = in.readParcelable(null);
        mMediaProfile = in.readParcelable(ImsStreamMediaProfile.class.getClassLoader());
    }

    public static final Creator<ImsCallProfile> CREATOR = new Creator<ImsCallProfile>() {