Don't release the selection that you didn't addref, mister document encoder.

This commit is contained in:
sfraser%netscape.com 1999-06-15 23:58:41 +00:00
Родитель c3f5debc82
Коммит c464dfe7ba
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -97,7 +97,7 @@ nsHTMLEncoder::nsHTMLEncoder() : mMimeType("text/html")
nsHTMLEncoder::~nsHTMLEncoder()
{
NS_IF_RELEASE(mDocument);
NS_IF_RELEASE(mSelection);
//NS_IF_RELEASE(mSelection); // no. we never addref'd it.
NS_IF_RELEASE(mPresShell);
}
@ -339,7 +339,7 @@ nsTextEncoder::nsTextEncoder() : mMimeType("text/plain")
nsTextEncoder::~nsTextEncoder()
{
NS_IF_RELEASE(mDocument);
NS_IF_RELEASE(mSelection);
//NS_IF_RELEASE(mSelection); // no. we never addref'd it.
NS_IF_RELEASE(mPresShell);
}

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

@ -97,7 +97,7 @@ nsHTMLEncoder::nsHTMLEncoder() : mMimeType("text/html")
nsHTMLEncoder::~nsHTMLEncoder()
{
NS_IF_RELEASE(mDocument);
NS_IF_RELEASE(mSelection);
//NS_IF_RELEASE(mSelection); // no. we never addref'd it.
NS_IF_RELEASE(mPresShell);
}
@ -339,7 +339,7 @@ nsTextEncoder::nsTextEncoder() : mMimeType("text/plain")
nsTextEncoder::~nsTextEncoder()
{
NS_IF_RELEASE(mDocument);
NS_IF_RELEASE(mSelection);
//NS_IF_RELEASE(mSelection); // no. we never addref'd it.
NS_IF_RELEASE(mPresShell);
}