bug 280079: Hang when a document's final tag is missing its closing >. r+sr=jst

git-svn-id: svn://10.0.0.236/trunk@168574 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mrbkap%gmail.com
2005-01-31 20:37:14 +00:00
parent cbbdeb48c5
commit e3941ea003

View File

@@ -436,7 +436,6 @@ nsresult CEndToken::Consume(PRUnichar aChar, nsScanner& aScanner,PRInt32 aFlag)
if (NS_SUCCEEDED(result) && !(aFlag & NS_IPARSER_FLAG_VIEW_SOURCE)) {
result = aScanner.SkipWhitespace(mNewlineCount);
NS_ENSURE_SUCCESS(result, result);
}
if (kEOF == result && !aScanner.IsIncremental()) {
@@ -580,10 +579,13 @@ nsresult CTextToken::Consume(PRUnichar aChar, nsScanner& aScanner,PRInt32 aFlag)
// be part of this text token (we wouldn't have come here if it weren't)
aScanner.CurrentPosition(origin);
start = origin;
++start;
aScanner.SetPosition(start);
aScanner.EndReading(end);
NS_ASSERTION(start != end, "Calling CTextToken::Consume when already at the "
"end of a document is a bad idea.");
aScanner.SetPosition(++start);
while((NS_OK==result) && (!done)) {
result=aScanner.ReadUntil(start, end, theEndCondition, PR_FALSE);
if(NS_OK==result) {