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

Commit ff63c832 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

am: 03a515ae

Change-Id: I65070de075e8d09512d771c805c82043f04b3275
parents 2fd131b4 03a515ae
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>() {