Index: Source/core/rendering/svg/SVGPathData.cpp |
diff --git a/Source/core/rendering/svg/SVGPathData.cpp b/Source/core/rendering/svg/SVGPathData.cpp |
index 8688342a4bf6e40bac6a66840eadca4405a136e3..19e50aebfe6fab35d310272dd4931fed968cc98c 100644 |
--- a/Source/core/rendering/svg/SVGPathData.cpp |
+++ b/Source/core/rendering/svg/SVGPathData.cpp |
@@ -79,7 +79,7 @@ static void updatePathFromPathElement(SVGElement* element, Path& path) |
static void updatePathFromPolylineElement(SVGElement* element, Path& path) |
{ |
- RefPtr<SVGPointList> points = toSVGPolyElement(element)->points()->currentValue(); |
+ RefPtrWillBeRawPtr<SVGPointList> points = toSVGPolyElement(element)->points()->currentValue(); |
if (points->isEmpty()) |
return; |