This commit is contained in:
scullin%netscape.com 1998-07-29 20:49:28 +00:00
Родитель 6023691778
Коммит d7a9a4ee52
2 изменённых файлов: 1 добавлений и 4 удалений

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

@ -32,7 +32,7 @@ int32 nsObject::s_nObjects = 0;
nsObject::nsObject(nsISupports *aOuter)
{
// ref count init
mRefCnt = 1;
mRefCnt = 0;
// assign outer
if (aOuter)
mOuter = aOuter;

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

@ -213,9 +213,6 @@ nsresult nsWidgetFactory::CreateInstance(nsISupports *aOuter,
// We didn't get the right interface, so clean up
delete inst;
}
else {
NS_RELEASE(inst);
}
return res;
}