Bug 504479 nsSMILAnimationFunction::ScaleIntervalProgress Comparing unsigned less than zero is never true

r=roc
This commit is contained in:
timeless@mozdev.org 2009-07-22 17:31:01 -05:00
Родитель e5bcc8df5f
Коммит 17c84ec60f
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -607,13 +607,11 @@ nsSMILAnimationFunction::ScaleIntervalProgress(double& aProgress,
if (!HasAttr(nsGkAtoms::keySplines))
return;
NS_ASSERTION(aIntervalIndex >= 0 &&
aIntervalIndex < (PRUint32)mKeySplines.Length(),
NS_ASSERTION(aIntervalIndex < (PRUint32)mKeySplines.Length(),
"Invalid interval index.");
NS_ASSERTION(aNumIntervals >= 1, "Invalid number of intervals.");
if (aIntervalIndex < 0 ||
aIntervalIndex >= (PRUint32)mKeySplines.Length() ||
if (aIntervalIndex >= (PRUint32)mKeySplines.Length() ||
aNumIntervals < 1)
return;