Index: Source/web/WebPluginContainerImpl.cpp |
diff --git a/Source/web/WebPluginContainerImpl.cpp b/Source/web/WebPluginContainerImpl.cpp |
index 8cea3d1fb4ff2e855a5d17b2c7422871d20cf233..39cc4314f54f2221ae2b8ee82e6c76d55cb20c9d 100644 |
--- a/Source/web/WebPluginContainerImpl.cpp |
+++ b/Source/web/WebPluginContainerImpl.cpp |
@@ -723,7 +723,7 @@ void WebPluginContainerImpl::handleDragEvent(MouseEvent* event) |
return; |
Clipboard* clipboard = event->dataTransfer(); |
- WebDragData dragData = clipboard->dataObject(); |
+ WebDragData dragData(clipboard->dataObject()); |
WebDragOperationsMask dragOperationMask = static_cast<WebDragOperationsMask>(clipboard->sourceOperation()); |
WebPoint dragScreenLocation(event->screenX(), event->screenY()); |
WebPoint dragLocation(event->absoluteLocation().x() - location().x(), event->absoluteLocation().y() - location().y()); |