mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-05 16:22:53 +00:00
Bug 1217047 - try harder in IsContractIDRegistered to return a reasonable answer; r=bsmedberg,f=yury
This commit is contained in:
parent
568411b554
commit
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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user