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

Commit e5562ecb authored by Valerie Hau's avatar Valerie Hau
Browse files

Fix loop in SF flushTransactionQueues

Bug: 132594932
Test: build, boot
Change-Id: I2598a6329b6ad70cbee9418a922961b6c9b1f8f8
parent 9bc115d9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3556,7 +3556,7 @@ bool SurfaceFlinger::flushTransactionQueues() {
                it = mTransactionQueues.erase(it);
                mTransactionCV.broadcast();
            } else {
                std::next(it, 1);
                it = std::next(it, 1);
            }
        }
    }