Bug 1530489 - Checking VRGPUParent is available before closing it. r=kip

Differential Revision: https://phabricator.services.mozilla.com/D21064

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Daosheng Mu 2019-02-27 22:38:58 +00:00
Родитель 78443da2a5
Коммит f915776a15
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -98,7 +98,7 @@ void VRParent::ActorDestroy(ActorDestroyReason aWhy) {
NS_WARNING("Shutting down VR process early due to a crash!");
ProcessChild::QuickExit();
}
if (!mVRGPUParent->IsClosed()) {
if (mVRGPUParent && !mVRGPUParent->IsClosed()) {
mVRGPUParent->Close();
}
mVRGPUParent = nullptr;