Merge "Use proper classloader when reading from parcel"

This commit is contained in:
Hall Liu
2018-01-12 20:56:36 +00:00
committed by Gerrit Code Review

View File

@@ -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>() {