Bug 1195098. Null check for blurred source surface. r=mstange

This commit is contained in:
Mason Chang 2015-08-18 20:43:24 -07:00
Родитель 2318fd1af8
Коммит 6f859e46d4
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -416,6 +416,9 @@ CreateBlurMask(const IntSize& aRectSize,
IntPoint topLeft;
RefPtr<SourceSurface> result = blur.DoBlur(&aDestDrawTarget, &topLeft);
if (!result) {
return nullptr;
}
IntRect expandedMinRect(topLeft, result->GetSize());
aExtendDestBy = expandedMinRect - minRect;