зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1198663. Tolerate null Image in Android NPAPI plugins. r=snorp
--HG-- extra : commitid : FdJDH9TFrxW extra : rebase_source : c68370c63e82749ac8a376a0449820e789f1a124
This commit is contained in:
Родитель
6f11ea45c0
Коммит
ebca112669
|
@ -238,9 +238,10 @@ nsPluginInstanceOwner::GetImageContainer()
|
|||
if (!img) {
|
||||
AttachToContainerAsSurfaceTexture(container, mInstance, r, &img);
|
||||
}
|
||||
MOZ_ASSERT(img);
|
||||
|
||||
container->SetCurrentImageInTransaction(img);
|
||||
if (img) {
|
||||
container->SetCurrentImageInTransaction(img);
|
||||
}
|
||||
#else
|
||||
mInstance->GetImageContainer(getter_AddRefs(container));
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче