| Index: Source/core/svg/SVGFESpecularLightingElement.cpp
 | 
| diff --git a/Source/core/svg/SVGFESpecularLightingElement.cpp b/Source/core/svg/SVGFESpecularLightingElement.cpp
 | 
| index 21782cfdeed37cda012724cc8adf6f169607336b..0dd7706cf2e5cce374934064a1a5482577405229 100644
 | 
| --- a/Source/core/svg/SVGFESpecularLightingElement.cpp
 | 
| +++ b/Source/core/svg/SVGFESpecularLightingElement.cpp
 | 
| @@ -184,15 +184,15 @@ PassRefPtr<FilterEffect> SVGFESpecularLightingElement::build(SVGFilterBuilder* f
 | 
|      FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value()));
 | 
|  
 | 
|      if (!input1)
 | 
| -        return 0;
 | 
| +        return nullptr;
 | 
|  
 | 
|      RefPtr<LightSource> lightSource = SVGFELightElement::findLightSource(this);
 | 
|      if (!lightSource)
 | 
| -        return 0;
 | 
| +        return nullptr;
 | 
|  
 | 
|      RenderObject* renderer = this->renderer();
 | 
|      if (!renderer)
 | 
| -        return 0;
 | 
| +        return nullptr;
 | 
|  
 | 
|      ASSERT(renderer->style());
 | 
|      Color color = renderer->style()->svgStyle()->lightingColor();
 | 
| 
 |