зеркало из https://github.com/mozilla/pjs.git
Bug 504479 nsSMILAnimationFunction::ScaleIntervalProgress Comparing unsigned less than zero is never true
r=roc
This commit is contained in:
Родитель
e5bcc8df5f
Коммит
17c84ec60f
|
@ -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;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче