From 73d5662e4c1639e0aa462d420433fe7efa248245 Mon Sep 17 00:00:00 2001 From: Mathias Agopian Date: Mon, 19 Nov 2012 16:50:24 -0800 Subject: fix typo that broke all the builds cherry pick into master since auto-merger is blocked Bug: 7584338 Change-Id: Ie7d7c238de1fd224b3b0bae9669a8dcb2f700a79 --- libs/gui/BufferQueue.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'libs/gui/BufferQueue.cpp') diff --git a/libs/gui/BufferQueue.cpp b/libs/gui/BufferQueue.cpp index 607e0bdbec..086e298196 100644 --- a/libs/gui/BufferQueue.cpp +++ b/libs/gui/BufferQueue.cpp @@ -314,12 +314,9 @@ status_t BufferQueue::dequeueBuffer(int *outBuf, sp& outFence, * the consumer may still have pending reads of the * buffers in flight. */ - if (found >= 0) { - bool isOlder = mSlots[i].mFrameNumber < - mSlots[found].mFrameNumber; - if (isOlder) { - found = i; - } + if ((found < 0) || + mSlots[i].mFrameNumber < mSlots[found].mFrameNumber) { + found = i; } } } -- cgit v1.2.3-59-g8ed1b