bug 275651: Fix a potential crash because of a bad use of nsScanner::SetPosition. r=jst sr=dmose

This commit is contained in:
mrbkap%gmail.com 2005-01-04 02:31:53 +00:00
Родитель 1c53cc203b
Коммит 04b1580f73
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -846,7 +846,7 @@ nsresult CTextToken::ConsumeParsedCharacterData(PRUnichar aChar,
// We ran out of room looking for a </title>. Go back to the first
// place that looked like a tag and use that as our stopping point.
theContent.writable().Truncate(truncPos);
aScanner.SetPosition(altEndPos);
aScanner.SetPosition(altEndPos, PR_FALSE, PR_TRUE);
}
// else we take everything we consumed.
mTextValue.Rebind(theContent.str());