Merge "Avoid NullPointerException if createUser returns null" into lmp-mr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
6d16b8614a
@@ -4734,6 +4734,9 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
|
|||||||
public UserHandle createAndInitializeUser(ComponentName who, String name,
|
public UserHandle createAndInitializeUser(ComponentName who, String name,
|
||||||
String ownerName, ComponentName profileOwnerComponent, Bundle adminExtras) {
|
String ownerName, ComponentName profileOwnerComponent, Bundle adminExtras) {
|
||||||
UserHandle user = createUser(who, name);
|
UserHandle user = createUser(who, name);
|
||||||
|
if (user == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
long id = Binder.clearCallingIdentity();
|
long id = Binder.clearCallingIdentity();
|
||||||
try {
|
try {
|
||||||
String profileOwnerPkg = profileOwnerComponent.getPackageName();
|
String profileOwnerPkg = profileOwnerComponent.getPackageName();
|
||||||
|
|||||||
Reference in New Issue
Block a user