зеркало из https://github.com/mozilla/gecko-dev.git
Don't GC nsContentUtils::XPConnect on shutdown if it doesn't exist. r=gal a=blocking2.0:final+,hard
This commit is contained in:
Родитель
c9c33eb477
Коммит
068460f52c
|
@ -3264,7 +3264,9 @@ nsJSContext::GarbageCollectNow()
|
|||
sPendingLoadCount = 0;
|
||||
sLoadingInProgress = PR_FALSE;
|
||||
|
||||
nsContentUtils::XPConnect()->GarbageCollect();
|
||||
if (nsContentUtils::XPConnect()) {
|
||||
nsContentUtils::XPConnect()->GarbageCollect();
|
||||
}
|
||||
}
|
||||
|
||||
//Static
|
||||
|
|
Загрузка…
Ссылка в новой задаче