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

Commit 9e9dd9c9 authored by Li Li's avatar Li Li
Browse files

Freezer: skip killed app

It's not necessary to unfreeze an already killed app.

Bug: 213395752
Test: No "Unable to query binder frozen info for pid 0" in logcat.
Change-Id: I87f182031363065fde570ae99d04ed5dc0b31e4c
parent 2a736f64
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -962,7 +962,7 @@ public final class CachedAppOptimizer {
        }

        opt.setFreezerOverride(false);
        if (!opt.isFrozen()) {
        if (pid == 0 || !opt.isFrozen()) {
            return;
        }