зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1363659 - Ensure not sending necko IPC constructor when shutting down, r=valentin
This commit is contained in:
Родитель
19e44237f2
Коммит
6f1e15db21
|
@ -66,6 +66,9 @@ void NeckoChild::InitNeckoChild()
|
|||
mozilla::dom::ContentChild * cpc =
|
||||
mozilla::dom::ContentChild::GetSingleton();
|
||||
NS_ASSERTION(cpc, "Content Protocol is NULL!");
|
||||
if (NS_WARN_IF(cpc->IsShuttingDown())) {
|
||||
return;
|
||||
}
|
||||
gNeckoChild = cpc->SendPNeckoConstructor();
|
||||
NS_ASSERTION(gNeckoChild, "PNecko Protocol init failed!");
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче