зеркало из https://github.com/mozilla/gecko-dev.git
Bug 987188 - Guard against a null pointer when dumping the layer tree. r=nical
This commit is contained in:
Родитель
e378b02005
Коммит
85b988272b
|
@ -200,6 +200,9 @@ CompositableHost::DumpTextureHost(FILE* aFile, TextureHost* aTexture)
|
|||
return;
|
||||
}
|
||||
RefPtr<gfx::DataSourceSurface> dSurf = aTexture->GetAsSurface();
|
||||
if (!dSurf) {
|
||||
return;
|
||||
}
|
||||
gfxPlatform *platform = gfxPlatform::GetPlatform();
|
||||
RefPtr<gfx::DrawTarget> dt = platform->CreateDrawTargetForData(dSurf->GetData(),
|
||||
dSurf->GetSize(),
|
||||
|
|
Загрузка…
Ссылка в новой задаче