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

Commit 95a6a96e authored by Amith Yamasani's avatar Amith Yamasani
Browse files

Fix an NPE when launching an activity that's not found.

Bug: 6356194
Change-Id: I66aeeda3ecab36a4aa32fb78c1d0559a73cd9a7a
parent d7f256dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2944,7 +2944,7 @@ final class ActivityStack {
        // Collect information about the target of the Intent.
        ActivityInfo aInfo = resolveActivity(intent, resolvedType, startFlags,
                profileFile, profileFd, userId);
        if (mService.isSingleton(aInfo.processName, aInfo.applicationInfo)) {
        if (aInfo != null && mService.isSingleton(aInfo.processName, aInfo.applicationInfo)) {
            userId = 0;
        }
        aInfo = mService.getActivityInfoForUser(aInfo, userId);