Merge "Read the sessionId value as long."

This commit is contained in:
Sudheer Shanka
2020-02-19 01:16:46 +00:00
committed by Android (Google) Code Review

View File

@@ -514,7 +514,7 @@ class BlobStoreSession extends IBlobStoreSession.Stub {
static BlobStoreSession createFromXml(@NonNull XmlPullParser in, int version,
@NonNull Context context, @NonNull SessionStateChangeListener stateChangeListener)
throws IOException, XmlPullParserException {
final int sessionId = XmlUtils.readIntAttribute(in, ATTR_ID);
final long sessionId = XmlUtils.readLongAttribute(in, ATTR_ID);
final String ownerPackageName = XmlUtils.readStringAttribute(in, ATTR_PACKAGE);
final int ownerUid = XmlUtils.readIntAttribute(in, ATTR_UID);