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

Commit 0810302b authored by Erik Wolsheimer's avatar Erik Wolsheimer Committed by android-build-merger
Browse files

Add missing null check to AppErrors#handleAppCrashLocked

am: dc74142c

Change-Id: I793ba24a1b62cab679d4a4f85c0184450bffb99d
parents 45d05b5d dc74142c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -638,7 +638,8 @@ class AppErrors {

            // Allow restarting for started or bound foreground services that are crashing the
            // first time. This includes wallpapers.
            if (sr.crashCount <= 1 && (sr.isForeground || procIsBoundForeground)) {
            if ((data != null) && (sr.crashCount <= 1)
                    && (sr.isForeground || procIsBoundForeground)) {
                data.isRestartableForService = true;
            }
        }