Merge topic 'file-DOWNLOAD-cap-progress'

413282c0 file: Avoid runaway DOWNLOAD/UPLOAD progress reports (#14807)
This commit is contained in:
Brad King 2014-03-20 09:22:21 -04:00 committed by CMake Topic Stage
commit c79d98b457
1 changed files with 5 additions and 0 deletions

View File

@ -2539,6 +2539,11 @@ namespace {
if (total > 0.0)
{
this->CurrentPercentage = static_cast<int>(value/total*100.0 + 0.5);
if(this->CurrentPercentage > 100)
{
// Avoid extra progress reports for unexpected data beyond total.
this->CurrentPercentage = 100;
}
}
bool updated = (OldPercentage != this->CurrentPercentage);