Index: Source/core/layout/style/SVGLayoutStyleDefs.cpp |
diff --git a/Source/core/layout/style/SVGLayoutStyleDefs.cpp b/Source/core/layout/style/SVGLayoutStyleDefs.cpp |
index 7ebb06c64597c57a5d15ef6ceea37765697fd0a9..2419eef65fff757987b12724d9c94296b672bc18 100644 |
--- a/Source/core/layout/style/SVGLayoutStyleDefs.cpp |
+++ b/Source/core/layout/style/SVGLayoutStyleDefs.cpp |
@@ -86,7 +86,7 @@ StyleStrokeData::StyleStrokeData(const StyleStrokeData& other) |
, opacity(other.opacity) |
, miterLimit(other.miterLimit) |
, width(other.width->clone()) |
- , dashOffset(other.dashOffset->clone()) |
+ , dashOffset(other.dashOffset) |
, dashArray(other.dashArray->clone()) |
, paintType(other.paintType) |
, paintColor(other.paintColor) |
@@ -102,7 +102,7 @@ bool StyleStrokeData::operator==(const StyleStrokeData& other) const |
return *width == *other.width |
&& opacity == other.opacity |
&& miterLimit == other.miterLimit |
- && *dashOffset == *other.dashOffset |
+ && dashOffset == other.dashOffset |
&& *dashArray == *other.dashArray |
&& paintType == other.paintType |
&& paintColor == other.paintColor |