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

Commit 978e7f87 authored by Tetsutoki Shiozawa's avatar Tetsutoki Shiozawa Committed by Takamasa Kuramitsu
Browse files

Fix: WindowManagerGlobal#setStoppedState failed by IOOBE

Symptom:
An application crashed due to IndexOutOfBoundsException.
The exception was thrown at WindowManagerGlobal#setStoppedState.

Root cause:
setStoppedState invokes setWindowStopped for each ViewRoot by
ascending order. If an application removes its view within the
loop, loop index exceeds the number of items.

Solution:
Loop in descending order.

Bug: 69018607
Change-Id: I7e20282dc99b767912be4e00d81ffb49fe6c7ac0
parent ee56b4a6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -605,9 +605,10 @@ public final class WindowManagerGlobal {
    public void setStoppedState(IBinder token, boolean stopped) {
        synchronized (mLock) {
            int count = mViews.size();
            for (int i = 0; i < count; i++) {
            for (int i = count - 1; i >= 0; i--) {
                if (token == null || mParams.get(i).token == token) {
                    ViewRootImpl root = mRoots.get(i);
                    // Client might remove the view by "stopped" event.
                    root.setWindowStopped(stopped);
                }
            }