Small code clean-up.
This commit is contained in:
parent
4038c5605b
commit
a7b6af2111
@ -231,23 +231,23 @@ void MUtils::UpdateChecker::checkForUpdates(void)
|
||||
elapsedTimer.start();
|
||||
do
|
||||
{
|
||||
if (!mirrorList.isEmpty())
|
||||
if (mirrorList.isEmpty())
|
||||
{
|
||||
const QString hostName = mirrorList.dequeue();
|
||||
if (tryContactHost(hostName, connectionTimout))
|
||||
goto endLoop; /*depleted!*/
|
||||
}
|
||||
const QString hostName = mirrorList.dequeue();
|
||||
if (tryContactHost(hostName, connectionTimout))
|
||||
{
|
||||
setProgress(1 + (connectionScore += 1));
|
||||
if (connectionScore >= MIN_CONNSCORE)
|
||||
{
|
||||
setProgress(1 + (connectionScore += 1));
|
||||
elapsedTimer.restart();
|
||||
if (connectionScore >= MIN_CONNSCORE)
|
||||
{
|
||||
goto endLoop; /*success*/
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
mirrorList.enqueue(hostName); /*re-schedule*/
|
||||
goto endLoop; /*success*/
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
mirrorList.enqueue(hostName); /*re-schedule*/
|
||||
}
|
||||
CHECK_CANCELLED();
|
||||
}
|
||||
while(!elapsedTimer.hasExpired(globalTimout));
|
||||
|
Loading…
Reference in New Issue
Block a user