This commit is contained in:
alecf%netscape.com 1999-09-17 05:15:00 +00:00
Родитель b96f8240ac
Коммит a20a31c3c2
2 изменённых файлов: 8 добавлений и 4 удалений

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

@ -1203,8 +1203,10 @@ nsGenericElement::AddRef()
NS_IMETHODIMP_(nsrefcnt)
nsGenericElement::Release()
{
nsrefcnt rc;
NS_RELEASE2(mContent, rc);
nsrefcnt rc=0;
NS_ASSERTION(mContent, "nsGenericElement: Nothing to release!");
if (mContent)
NS_RELEASE2(mContent, rc);
return rc;
}

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

@ -1203,8 +1203,10 @@ nsGenericElement::AddRef()
NS_IMETHODIMP_(nsrefcnt)
nsGenericElement::Release()
{
nsrefcnt rc;
NS_RELEASE2(mContent, rc);
nsrefcnt rc=0;
NS_ASSERTION(mContent, "nsGenericElement: Nothing to release!");
if (mContent)
NS_RELEASE2(mContent, rc);
return rc;
}