| Index: Source/core/svg/SVGClipPathElement.cpp
|
| diff --git a/Source/core/svg/SVGClipPathElement.cpp b/Source/core/svg/SVGClipPathElement.cpp
|
| index 66c606d2dc8f50f49e05dc0c4650d468096cd1c0..df5ba38d31e4bd84b12c6bb6f00b08503858adee 100644
|
| --- a/Source/core/svg/SVGClipPathElement.cpp
|
| +++ b/Source/core/svg/SVGClipPathElement.cpp
|
| @@ -47,9 +47,9 @@ void SVGClipPathElement::svgAttributeChanged(const QualifiedName& attrName)
|
| if (attrName == SVGNames::clipPathUnitsAttr) {
|
| SVGElement::InvalidationGuard invalidationGuard(this);
|
|
|
| - LayoutSVGResourceContainer* renderer = toLayoutSVGResourceContainer(this->layoutObject());
|
| - if (renderer)
|
| - renderer->invalidateCacheAndMarkForLayout();
|
| + LayoutSVGResourceContainer* layoutObject = toLayoutSVGResourceContainer(this->layoutObject());
|
| + if (layoutObject)
|
| + layoutObject->invalidateCacheAndMarkForLayout();
|
| return;
|
| }
|
|
|
|
|