Fix Linux compile errors/warnings in xpcom/components

This commit is contained in:
Benjamin Smedberg 2010-06-11 12:03:06 -04:00
Родитель a7e67d32ad
Коммит dfd21e98ac
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -417,7 +417,7 @@ nsComponentManagerImpl::RegisterModule(const mozilla::Module* aModule,
entry->entry,
entry->value);
}
};
}
void
nsComponentManagerImpl::RegisterCIDEntry(const mozilla::Module::CIDEntry* aEntry,
@ -1260,7 +1260,7 @@ nsComponentManagerImpl::RegisterFactory(const nsCID& aClass,
const char* aContractID,
nsIFactory* aFactory)
{
nsAutoPtr<nsFactoryEntry> f = new nsFactoryEntry(aFactory);
nsAutoPtr<nsFactoryEntry> f(new nsFactoryEntry(aFactory));
nsAutoMonitor mon(mMon);
nsFactoryEntry* oldf = mFactories.Get(aClass);