| Index: Source/core/svg/SVGFEImageElement.cpp
|
| diff --git a/Source/core/svg/SVGFEImageElement.cpp b/Source/core/svg/SVGFEImageElement.cpp
|
| index 7936cfe1d9988c8cf97ce5c831a9757f77c3e70f..c021693919e0db49cc448ba28162288d82cde94f 100644
|
| --- a/Source/core/svg/SVGFEImageElement.cpp
|
| +++ b/Source/core/svg/SVGFEImageElement.cpp
|
| @@ -153,8 +153,8 @@ void SVGFEImageElement::notifyFinished(Resource*)
|
| if (!parent || !isSVGFilterElement(parent) || !parent->layoutObject())
|
| return;
|
|
|
| - if (LayoutObject* renderer = this->layoutObject())
|
| - markForLayoutAndParentResourceInvalidation(renderer);
|
| + if (LayoutObject* layoutObject = this->layoutObject())
|
| + markForLayoutAndParentResourceInvalidation(layoutObject);
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<FilterEffect> SVGFEImageElement::build(SVGFilterBuilder*, Filter* filter)
|
|
|