Title: [117634] trunk/Source/WebKit2
Revision
117634
Author
[email protected]
Date
2012-05-18 14:45:10 -0700 (Fri, 18 May 2012)

Log Message

Missing plugin msg becomes "insecure plugin version" after Real Player page refresh
https://bugs.webkit.org/show_bug.cgi?id=86903
<rdar://problem/11477163>

Reviewed by Andreas Kling.

Set blocked to false before returning early when the plug-in doesn't exist.

* UIProcess/WebContext.cpp:
(WebKit::WebContext::getPluginPath):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (117633 => 117634)


--- trunk/Source/WebKit2/ChangeLog	2012-05-18 21:42:31 UTC (rev 117633)
+++ trunk/Source/WebKit2/ChangeLog	2012-05-18 21:45:10 UTC (rev 117634)
@@ -1,3 +1,16 @@
+2012-05-18  Anders Carlsson  <[email protected]>
+
+        Missing plugin msg becomes "insecure plugin version" after Real Player page refresh
+        https://bugs.webkit.org/show_bug.cgi?id=86903
+        <rdar://problem/11477163>
+
+        Reviewed by Andreas Kling.
+
+        Set blocked to false before returning early when the plug-in doesn't exist.
+
+        * UIProcess/WebContext.cpp:
+        (WebKit::WebContext::getPluginPath):
+
 2012-05-18  Sudarsana Nagineni  <[email protected]>
 
         [GTK] [WK2] Memory leaks in WebKitBackForwardList

Modified: trunk/Source/WebKit2/UIProcess/WebContext.cpp (117633 => 117634)


--- trunk/Source/WebKit2/UIProcess/WebContext.cpp	2012-05-18 21:42:31 UTC (rev 117633)
+++ trunk/Source/WebKit2/UIProcess/WebContext.cpp	2012-05-18 21:45:10 UTC (rev 117634)
@@ -653,11 +653,11 @@
 
     String newMimeType = mimeType.lower();
 
+    blocked = false;
     PluginModuleInfo plugin = pluginInfoStore().findPlugin(newMimeType, KURL(KURL(), urlString));
     if (!plugin.path)
         return;
 
-    blocked = false;
     if (pluginInfoStore().shouldBlockPlugin(plugin)) {
         blocked = true;
         return;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to