Bug 1533651 - Don't check result of PSessionStorageObserverChild::SendDeleteMe; r=asuth

Differential Revision: https://phabricator.services.mozilla.com/D24878
This commit is contained in:
Jan Varga 2019-03-26 12:51:12 +01:00
Родитель f0eb613282
Коммит 77fcbc5f34
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -426,7 +426,10 @@ void SessionStorageObserverChild::SendDeleteMeInternal() {
mObserver->ClearActor();
mObserver = nullptr;
MOZ_ALWAYS_TRUE(PSessionStorageObserverChild::SendDeleteMe());
// Don't check result here since IPC may no longer be available due to
// SessionStorageManager (which holds a strong reference to
// SessionStorageObserver) being destroyed very late in the game.
PSessionStorageObserverChild::SendDeleteMe();
}
}