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

Commit 07b3c742 authored by John Reck's avatar John Reck Committed by Android Git Automerger
Browse files

am e5831979: Missing null check

* commit 'e58319791de1e47db1d6d3c6565f03a5f775a9cb':
  Missing null check
parents 6d0be31f ccf2fa00
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -434,11 +434,12 @@ public final class WindowManagerGlobal {
        boolean hasVisibleWindows = false;
        synchronized (mLock) {
            for (int i = mRoots.size() - 1; i >= 0; --i) {
                if (mRoots.get(i).getHostVisibility() == View.VISIBLE
                        && mRoots.get(i).mAttachInfo.mHardwareRenderer != null) {
                final ViewRootImpl root = mRoots.get(i);
                if (root.mView != null && root.getHostVisibility() == View.VISIBLE
                        && root.mAttachInfo.mHardwareRenderer != null) {
                    hasVisibleWindows = true;
                } else {
                    mRoots.get(i).destroyHardwareResources();
                    root.destroyHardwareResources();
                }
            }
        }