Bug 1205339 - null out sIPCServingParent on teardown, to not assert on tab crash recovery. r=jesup

--HG--
extra : transplant_source : %90E8%8DQeX%C7m%084%A3%DF7%7D%D2%7B9%8E%15
This commit is contained in:
Jan-Ivar Bruaroey 2015-09-16 13:47:07 -04:00
Родитель e8f7f42088
Коммит 5c82d76952
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -545,6 +545,7 @@ DeallocPMediaParent(media::PMediaParent *aActor)
{
MOZ_ASSERT(sIPCServingParent == static_cast<Parent<PMediaParent>*>(aActor));
delete sIPCServingParent;
sIPCServingParent = nullptr;
return true;
}