зеркало из https://github.com/mozilla/pjs.git
Bug 594779: Bail out when texture creation fails, to avoid NULL pointer dereference. r=vlad a=blocking-beta7 CLOSED TREE
This commit is contained in:
Родитель
4530372dc6
Коммит
c970431566
|
@ -201,6 +201,12 @@ ThebesLayerD3D9::RenderLayer()
|
|||
|
||||
if (!mTexture) {
|
||||
CreateNewTexture(gfxIntSize(visibleRect.width, visibleRect.height));
|
||||
|
||||
if (!mTexture) {
|
||||
NS_WARNING("Failed to create texture for thebes layer - not drawing.");
|
||||
return;
|
||||
}
|
||||
|
||||
mValidRegion.SetEmpty();
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче