зеркало из https://github.com/mozilla/gecko-dev.git
small fix of an off-by-one error in an assertion
This commit is contained in:
Родитель
efe5fd63d6
Коммит
70eb4bfeed
|
@ -254,7 +254,7 @@ NS_IMETHODIMP DeleteRangeTxn::CreateTxnsToDeleteBetween(nsIDOMNode *aStartParent
|
|||
if ((NS_SUCCEEDED(result)) && children)
|
||||
{
|
||||
children->GetLength(&childCount);
|
||||
NS_ASSERTION(aEndOffset<childCount, "bad aEndOffset");
|
||||
NS_ASSERTION(aEndOffset<=childCount, "bad aEndOffset");
|
||||
PRUint32 i;
|
||||
for (i=aStartOffset; i<=aEndOffset; i++)
|
||||
{
|
||||
|
|
|
@ -254,7 +254,7 @@ NS_IMETHODIMP DeleteRangeTxn::CreateTxnsToDeleteBetween(nsIDOMNode *aStartParent
|
|||
if ((NS_SUCCEEDED(result)) && children)
|
||||
{
|
||||
children->GetLength(&childCount);
|
||||
NS_ASSERTION(aEndOffset<childCount, "bad aEndOffset");
|
||||
NS_ASSERTION(aEndOffset<=childCount, "bad aEndOffset");
|
||||
PRUint32 i;
|
||||
for (i=aStartOffset; i<=aEndOffset; i++)
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче