зеркало из https://github.com/mozilla/gecko-dev.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:
Родитель
d2abe7bc5d
Коммит
818de29c8d
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче