| Index: Source/WebCore/platform/graphics/filters/FETurbulence.cpp
|
| ===================================================================
|
| --- Source/WebCore/platform/graphics/filters/FETurbulence.cpp (revision 96370)
|
| +++ Source/WebCore/platform/graphics/filters/FETurbulence.cpp (working copy)
|
| @@ -372,8 +372,10 @@
|
| if (!pixelArray)
|
| return;
|
|
|
| - if (absolutePaintRect().isEmpty())
|
| + if (absolutePaintRect().isEmpty()) {
|
| + pixelArray->clear();
|
| return;
|
| + }
|
|
|
| PaintingData paintingData(m_seed, roundedIntSize(filterPrimitiveSubregion().size()));
|
| initPaint(paintingData);
|
|
|