Get rid of circular reference between sink and parser. Fix for bug 8975.

This commit is contained in:
vidur%netscape.com 1999-08-04 18:25:23 +00:00
Родитель b8ad6df8ca
Коммит 15cc7a1e6c
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -225,6 +225,10 @@ nsHTMLFragmentContentSink::DidBuildModel(PRInt32 aQualityLevel)
{
FlushText();
// Drop our reference to the parser to get rid of a circular
// reference.
NS_IF_RELEASE(mParser);
return NS_OK;
}

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

@ -225,6 +225,10 @@ nsHTMLFragmentContentSink::DidBuildModel(PRInt32 aQualityLevel)
{
FlushText();
// Drop our reference to the parser to get rid of a circular
// reference.
NS_IF_RELEASE(mParser);
return NS_OK;
}