summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/qt/PasteboardQt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/qt/PasteboardQt.cpp')
-rw-r--r--WebCore/platform/qt/PasteboardQt.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/WebCore/platform/qt/PasteboardQt.cpp b/WebCore/platform/qt/PasteboardQt.cpp
index 44c9eec..70ec546 100644
--- a/WebCore/platform/qt/PasteboardQt.cpp
+++ b/WebCore/platform/qt/PasteboardQt.cpp
@@ -151,7 +151,8 @@ void Pasteboard::writeImage(Node* node, const KURL&, const String&)
#ifndef QT_NO_CLIPBOARD
CachedImage* cachedImage = toRenderImage(node->renderer())->cachedImage();
- ASSERT(cachedImage);
+ if (!cachedImage || cachedImage->errorOccurred())
+ return;
Image* image = cachedImage->image();
ASSERT(image);