Index: Source/platform/graphics/GraphicsContext.cpp |
diff --git a/Source/platform/graphics/GraphicsContext.cpp b/Source/platform/graphics/GraphicsContext.cpp |
index ac792ec18e8434c9ad3bbf39becfb03b997adc4f..59168523c45d0d473a388605e53e925136505b12 100644 |
--- a/Source/platform/graphics/GraphicsContext.cpp |
+++ b/Source/platform/graphics/GraphicsContext.cpp |
@@ -543,7 +543,7 @@ void GraphicsContext::drawDisplayList(DisplayList* displayList) |
if (bounds.x() || bounds.y()) |
m_canvas->translate(bounds.x(), bounds.y()); |
- m_canvas->drawPicture(*displayList->picture()); |
+ m_canvas->drawPicture(displayList->picture()); |
if (bounds.x() || bounds.y()) |
m_canvas->translate(-bounds.x(), -bounds.y()); |