This commit is contained in:
kipp%netscape.com 1998-09-12 19:29:39 +00:00
Родитель 6c15ae4955
Коммит 0ead32a761
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -80,7 +80,7 @@ nsresult nsObject::QueryInterface(const nsIID& aIID, void** aInstancePtr)
*/
nsrefcnt nsObject::AddRef(void)
{
return mOuter->AddRef();
return NS_ADDREF(mOuter);
}
/**
@ -88,7 +88,10 @@ nsrefcnt nsObject::AddRef(void)
*/
nsrefcnt nsObject::Release(void)
{
return NS_RELEASE(mOuter);
// nsrefcnt rc;
// NS_RELEASE2(mOuter, rc);
// return rc;
return NS_RELEASE(mOuter);
}
/**