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

Commit 17400627 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

Merge "Avoid NPE in forceStopPackageLocked()." into lmp-mr1-dev

parents 0a398d7b 27f36f42
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5661,7 +5661,7 @@ public final class ActivityManagerService extends ActivityManagerNative
                    didSomething = true;
                    it.remove();
                    pir.canceled = true;
                    if (pir.key.activity != null) {
                    if (pir.key.activity != null && pir.key.activity.pendingResults != null) {
                        pir.key.activity.pendingResults.remove(pir.ref);
                    }
                }