зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1217047 - try harder in IsContractIDRegistered to return a reasonable answer; r=bsmedberg,f=yury
This commit is contained in:
Родитель
568411b554
Коммит
4acd4505dd
|
@ -1749,7 +1749,12 @@ nsComponentManagerImpl::IsContractIDRegistered(const char* aClass,
|
|||
nsFactoryEntry* entry = GetFactoryEntry(aClass, strlen(aClass));
|
||||
|
||||
if (entry) {
|
||||
*aResult = true;
|
||||
// UnregisterFactory might have left a stale nsFactoryEntry in
|
||||
// mContractIDs, so we should check to see whether this entry has
|
||||
// anything useful.
|
||||
*aResult = (bool(entry->mModule) ||
|
||||
bool(entry->mFactory) ||
|
||||
bool(entry->mServiceObject));
|
||||
} else {
|
||||
*aResult = false;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче