Index: Source/core/animation/LengthPairStyleInterpolation.cpp |
diff --git a/Source/core/animation/LengthPairStyleInterpolation.cpp b/Source/core/animation/LengthPairStyleInterpolation.cpp |
index e15120aa2ec36bfa602aec890a2d9ed8f27fc67c..6fb12f91f9e7bc9d9bc1fc6c1363c635f59793bc 100644 |
--- a/Source/core/animation/LengthPairStyleInterpolation.cpp |
+++ b/Source/core/animation/LengthPairStyleInterpolation.cpp |
@@ -21,8 +21,8 @@ PassOwnPtrWillBeRawPtr<InterpolableValue> LengthPairStyleInterpolation::lengthPa |
OwnPtrWillBeRawPtr<InterpolableList> result = InterpolableList::create(2); |
const CSSValuePair& pair = toCSSValuePair(value); |
- result->set(0, LengthStyleInterpolation::toInterpolableValue(*pair.first())); |
- result->set(1, LengthStyleInterpolation::toInterpolableValue(*pair.second())); |
+ result->set(0, LengthStyleInterpolation::toInterpolableValue(pair.first())); |
+ result->set(1, LengthStyleInterpolation::toInterpolableValue(pair.second())); |
return result.release(); |
} |