Merge "Add null check on ApplicationInfo." into udc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
a177e5f141
@@ -579,7 +579,9 @@ class ProcessRecord implements WindowProcessListener {
|
||||
processName = _processName;
|
||||
sdkSandboxClientAppPackage = _sdkSandboxClientAppPackage;
|
||||
if (isSdkSandbox) {
|
||||
sdkSandboxClientAppVolumeUuid = getClientInfoForSdkSandbox().volumeUuid;
|
||||
final ApplicationInfo clientInfo = getClientInfoForSdkSandbox();
|
||||
sdkSandboxClientAppVolumeUuid = clientInfo != null
|
||||
? clientInfo.volumeUuid : null;
|
||||
} else {
|
||||
sdkSandboxClientAppVolumeUuid = null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user