Bug 987188 - Guard against a null pointer when dumping the layer tree. r=nical

This commit is contained in:
Kartikaya Gupta 2014-04-01 01:46:00 +02:00
Родитель e378b02005
Коммит 85b988272b
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -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(),