<rdar://problem/
5412988>
Crash when visiting http://www.rockonflash.com/blog/?p=58
* plugins/win/PluginViewWin.cpp:
(WebCore::PluginViewWin::updateWindow):
Just return if the plugin view hasn't been inserted in the hierarchy yet.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@25159
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-08-20 Anders Carlsson <andersca@apple.com>
+
+ Reviewed by Adam.
+
+ <rdar://problem/5412988>
+ Crash when visiting http://www.rockonflash.com/blog/?p=58
+
+ * plugins/win/PluginViewWin.cpp:
+ (WebCore::PluginViewWin::updateWindow):
+ Just return if the plugin view hasn't been inserted in the hierarchy yet.
+
2007-08-20 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Zack.
void PluginViewWin::updateWindow() const
{
+ if (!parent())
+ return;
+
ASSERT(parent()->isFrameView());
FrameView* frameView = static_cast<FrameView*>(parent());