Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a177e5f1 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add null check on ApplicationInfo." into udc-dev

parents 158198dd 50a46aaa
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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;
        }