Merge pull request #3229 from Chocobo1/dev6_v320

Fix potential out-of-bound access in misc::friendlyUnit()
This commit is contained in:
sledgehammer999 2015-06-20 02:49:10 +03:00
commit c1a47279af
2 changed files with 4 additions and 5 deletions

View file

@ -296,8 +296,10 @@ QString misc::friendlyUnit(qreal val, bool is_speed)
if (val < 0)
return QCoreApplication::translate("misc", "Unknown", "Unknown (size)");
int i = 0;
while(val >= 1024. && i++<6)
while(val >= 1024. && i < 4) {
val /= 1024.;
++i;
}
QString ret;
if (i == 0)
ret = QString::number((long)val) + " " + QCoreApplication::translate("misc", units[0].source, units[0].comment);

View file

@ -105,10 +105,7 @@ void QAlertDispatcher::dispatch(QSharedPointer<Tag> tag,
return;
bool was_empty = that->alerts.empty();
that->alerts.push_back(alert_ptr.get());
alert_ptr.release();
that->alerts.push_back(alert_ptr.release());
if (was_empty)
that->alerts_condvar.wakeAll();