summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-12 13:08:44 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-12 13:49:37 +0100
commita0239af64d00aecfa2b4b73488aaf393137ab861 (patch)
tree8da3b0e96f7c94c2fc0e05aa358e3fc1d1eba0b4
parentf6a9b58bc72c1918f965043035dd1c04a0772820 (diff)
coverity#1306212 silence Infinite loop
Change-Id: I8266c914c4f6fa34fcb000db8c1e342e18afcfe1
-rw-r--r--vcl/qa/cppunit/timer.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/qa/cppunit/timer.cxx b/vcl/qa/cppunit/timer.cxx
index 12110b7fc3bf..70f832d1a225 100644
--- a/vcl/qa/cppunit/timer.cxx
+++ b/vcl/qa/cppunit/timer.cxx
@@ -119,6 +119,7 @@ void TimerTest::testIdleMainloop()
{
bool bTriggered = false;
IdleBool aTest( bTriggered );
+ // coverity[loop_top] - Application::Yield allows the timer to fire and toggle bDone
while (!bTriggered)
{
ImplSVData* pSVData = ImplGetSVData();