| Index: Source/core/svg/SVGMaskElement.cpp
|
| diff --git a/Source/core/svg/SVGMaskElement.cpp b/Source/core/svg/SVGMaskElement.cpp
|
| index a2f7d84cde615444115373815decb77c84edfc54..3934670247d1514eb870182bb7b220142a89899b 100644
|
| --- a/Source/core/svg/SVGMaskElement.cpp
|
| +++ b/Source/core/svg/SVGMaskElement.cpp
|
| @@ -120,9 +120,9 @@ void SVGMaskElement::svgAttributeChanged(const QualifiedName& attrName)
|
| updateRelativeLengthsInformation();
|
| }
|
|
|
| - LayoutSVGResourceContainer* renderer = toLayoutSVGResourceContainer(this->layoutObject());
|
| - if (renderer)
|
| - renderer->invalidateCacheAndMarkForLayout();
|
| + LayoutSVGResourceContainer* layoutObject = toLayoutSVGResourceContainer(this->layoutObject());
|
| + if (layoutObject)
|
| + layoutObject->invalidateCacheAndMarkForLayout();
|
|
|
| return;
|
| }
|
|
|