зеркало из https://github.com/mozilla/gecko-dev.git
Bug 744464: Fix incorrect bounds-check of unsigned value in nsPlainTextSerializer::AppendElementEnd. r=smaug
This commit is contained in:
Родитель
4d13548380
Коммит
12b7bbd274
|
@ -410,8 +410,9 @@ nsPlainTextSerializer::AppendElementEnd(Element* aElement,
|
|||
mOutputString = nsnull;
|
||||
|
||||
if (id == nsGkAtoms::head) {
|
||||
NS_ASSERTION(mHeadLevel != 0,
|
||||
"mHeadLevel being decremented below 0");
|
||||
--mHeadLevel;
|
||||
NS_ASSERTION(mHeadLevel >= 0, "mHeadLevel < 0");
|
||||
}
|
||||
|
||||
return rv;
|
||||
|
|
Загрузка…
Ссылка в новой задаче