| Index: Source/core/css/parser/CSSParser.cpp
|
| diff --git a/Source/core/css/parser/CSSParser.cpp b/Source/core/css/parser/CSSParser.cpp
|
| index f4b24d8bd780783b08ca0c896454400da7daea04..f0261e9db9954d67bfbf3e006999b990f847c210 100644
|
| --- a/Source/core/css/parser/CSSParser.cpp
|
| +++ b/Source/core/css/parser/CSSParser.cpp
|
| @@ -128,7 +128,7 @@ bool CSSParser::parseColor(RGBA32& color, const String& string, bool strict)
|
| if (!value || !value->isPrimitiveValue())
|
| return false;
|
|
|
| - CSSPrimitiveValue primitiveValue = toCSSPrimitiveValue(*value);
|
| + const CSSPrimitiveValue& primitiveValue = toCSSPrimitiveValue(*value);
|
| if (!primitiveValue.isRGBColor())
|
| return false;
|
|
|
|
|