am 8325c3a8
: Backporting I57c58c4083bd59f45095c184d6ca5a302f79ff6e to HC-MR1. New change since file was renamed, making cherry-pick impossible.
* commit '8325c3a89197e47cfc2eeb4117c927fb8cb91630': Backporting I57c58c4083bd59f45095c184d6ca5a302f79ff6e to HC-MR1. New change since file was renamed, making cherry-pick impossible.
This commit is contained in:
@ -9323,6 +9323,19 @@ class PackageManagerService extends IPackageManager.Stub {
|
||||
}
|
||||
mPendingPackages.clear();
|
||||
|
||||
/*
|
||||
* Make sure all the updated system packages have their shared users
|
||||
* associated with them.
|
||||
*/
|
||||
final Iterator<PackageSetting> disabledIt = mDisabledSysPackages.values().iterator();
|
||||
while (disabledIt.hasNext()) {
|
||||
final PackageSetting disabledPs = disabledIt.next();
|
||||
final Object id = getUserIdLP(disabledPs.userId);
|
||||
if (id != null && id instanceof SharedUserSetting) {
|
||||
disabledPs.sharedUser = (SharedUserSetting) id;
|
||||
}
|
||||
}
|
||||
|
||||
readStoppedLP();
|
||||
|
||||
mReadMessages.append("Read completed successfully: "
|
||||
|
Reference in New Issue
Block a user