| Index: Source/core/svg/SVGLengthList.cpp
|
| diff --git a/Source/core/svg/SVGLengthList.cpp b/Source/core/svg/SVGLengthList.cpp
|
| index 02c1a0772e08149a02823e6050dbf59fcd4cc443..1518d2c924a541cdfceba3370acb439b96b88560 100644
|
| --- a/Source/core/svg/SVGLengthList.cpp
|
| +++ b/Source/core/svg/SVGLengthList.cpp
|
| @@ -30,7 +30,7 @@ namespace WebCore {
|
| template<typename CharType>
|
| void SVGLengthList::parseInternal(const CharType*& ptr, const CharType* end, SVGLengthMode mode)
|
| {
|
| - TrackExceptionState es;
|
| + TrackExceptionState exceptionState;
|
|
|
| while (ptr < end) {
|
| const CharType* start = ptr;
|
| @@ -43,8 +43,8 @@ void SVGLengthList::parseInternal(const CharType*& ptr, const CharType* end, SVG
|
| String valueString(start, ptr - start);
|
| if (valueString.isEmpty())
|
| return;
|
| - length.setValueAsString(valueString, es);
|
| - if (es.hadException())
|
| + length.setValueAsString(valueString, exceptionState);
|
| + if (exceptionState.hadException())
|
| return;
|
| append(length);
|
| skipOptionalSVGSpacesOrDelimiter(ptr, end);
|
|
|