зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1241678 - Fix low-volume null-deref crash. r=BenWa
--HG-- extra : commitid : Iy9q8veFylP
This commit is contained in:
Родитель
2398798d67
Коммит
fc03bd93b1
|
@ -2427,11 +2427,10 @@ CrossProcessCompositorParent::SetConfirmedTargetAPZC(const LayerTransactionParen
|
|||
uint64_t id = aLayerTree->GetId();
|
||||
MOZ_ASSERT(id != 0);
|
||||
const CompositorParent::LayerTreeState* state = CompositorParent::GetIndirectShadowTree(id);
|
||||
if (!state) {
|
||||
if (!state || !state->mParent) {
|
||||
return;
|
||||
}
|
||||
|
||||
MOZ_ASSERT(state->mParent);
|
||||
state->mParent->SetConfirmedTargetAPZC(aLayerTree, aInputBlockId, aTargets);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче