Index: Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp |
=================================================================== |
--- Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp (revision 127631) |
+++ Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp (working copy) |
@@ -371,9 +371,9 @@ |
void FrameLoaderClientEfl::redirectDataToPlugin(Widget* pluginWidget) |
{ |
- ASSERT(!m_pluginView); |
m_pluginView = static_cast<PluginView*>(pluginWidget); |
- m_hasSentResponseToPlugin = false; |
+ if (pluginWidget) |
+ m_hasSentResponseToPlugin = false; |
} |
PassRefPtr<Widget> FrameLoaderClientEfl::createJavaAppletWidget(const IntSize&, HTMLAppletElement*, const KURL& baseURL, |