| Index: Source/core/svg/SVGAnimatedType.cpp
|
| diff --git a/Source/core/svg/SVGAnimatedType.cpp b/Source/core/svg/SVGAnimatedType.cpp
|
| index 148e00bb42bf747575e08efbff25b148e00751a8..486773f43069c6f8d7d45b11bc0aad2d2ffb1b0a 100644
|
| --- a/Source/core/svg/SVGAnimatedType.cpp
|
| +++ b/Source/core/svg/SVGAnimatedType.cpp
|
| @@ -280,9 +280,9 @@ bool SVGAnimatedType::setValueAsString(const QualifiedName& attrName, const Stri
|
| break;
|
| case AnimatedLength: {
|
| ASSERT(m_data.length);
|
| - TrackExceptionState es;
|
| - m_data.length->setValueAsString(value, SVGLength::lengthModeForAnimatedLengthAttribute(attrName), es);
|
| - return !es.hadException();
|
| + TrackExceptionState exceptionState;
|
| + m_data.length->setValueAsString(value, SVGLength::lengthModeForAnimatedLengthAttribute(attrName), exceptionState);
|
| + return !exceptionState.hadException();
|
| }
|
| case AnimatedLengthList:
|
| ASSERT(m_data.lengthList);
|
|
|