Bug 1363659 - Ensure not sending necko IPC constructor when shutting down, r=valentin

This commit is contained in:
Junior Hsu 2017-05-26 03:06:00 +02:00
Родитель 19e44237f2
Коммит 6f1e15db21
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -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!");
}