зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1195098. Null check for blurred source surface. r=mstange
This commit is contained in:
Родитель
2318fd1af8
Коммит
6f859e46d4
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче