From beadebc0f7eb5582fcb8dcb082d19afdf2751876 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 3 Oct 2014 09:47:29 +0100 Subject: coverity#1242802 coverity gold(?) Structurally dead code, loop doesn't loop Change-Id: I2be3e6d88472ba8b69f012aaf975a91f0ab4f693 --- sd/source/ui/framework/configuration/ConfigurationUpdater.cxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'sd') diff --git a/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx b/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx index da4c32837918..10ea9201038f 100644 --- a/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx +++ b/sd/source/ui/framework/configuration/ConfigurationUpdater.cxx @@ -108,11 +108,8 @@ void ConfigurationUpdater::RequestUpdate ( do { UpdateConfiguration(); - - if (mbUpdatePending && IsUpdatePossible()) - continue; } - while (false); + while (mbUpdatePending && IsUpdatePossible()); } else { -- cgit