Protecting shutdown with mInitialized. regxpcom will cause shutdown to

happen without mInitialized and without this incorrect shutdown to
happen. r=vidur r=rjc
This commit is contained in:
dp%netscape.com 2000-02-16 07:42:00 +00:00
Родитель 8ed6b9dab4
Коммит 0d7c00e429
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -246,6 +246,10 @@ nsLayoutModule::Initialize()
void
nsLayoutModule::Shutdown()
{
if (!mInitialized) {
return;
}
// Release all of our atoms
nsColorNames::ReleaseTable();
nsCSSProps::ReleaseTable();