#=66715
sr=jst d=unsinged integer tested for < 0, removed the test, since it will always be 0 or greater.
This commit is contained in:
Родитель
6feb8df69c
Коммит
c6745ebb5b
|
@ -413,7 +413,7 @@ nsGenericDOMDataNode::ReplaceData(nsIContent *aOuterContent, PRUint32 aOffset,
|
|||
|
||||
// sanitize arguments
|
||||
PRUint32 textLength = mText.GetLength();
|
||||
if ((aOffset > textLength) || (aOffset < 0) || (aCount < 0)) {
|
||||
if (aOffset > textLength) {
|
||||
return NS_ERROR_DOM_INDEX_SIZE_ERR;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче