Title: [218574] releases/WebKitGTK/webkit-2.16/Source/WebKit2
Revision
218574
Author
[email protected]
Date
2017-06-20 02:02:24 -0700 (Tue, 20 Jun 2017)

Log Message

Merge r218046 - Crash inside WebKit::PluginView::getAuthenticationInfo
https://bugs.webkit.org/show_bug.cgi?id=173083
<rdar://problem/32513144>

Address Darin's review comment.

* WebProcess/Plugins/PluginView.cpp:
(WebKit::PluginView::getAuthenticationInfo):

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.16/Source/WebKit2/ChangeLog (218573 => 218574)


--- releases/WebKitGTK/webkit-2.16/Source/WebKit2/ChangeLog	2017-06-20 08:59:44 UTC (rev 218573)
+++ releases/WebKitGTK/webkit-2.16/Source/WebKit2/ChangeLog	2017-06-20 09:02:24 UTC (rev 218574)
@@ -1,3 +1,14 @@
+2017-06-09  Ryosuke Niwa  <[email protected]>
+
+        Crash inside WebKit::PluginView::getAuthenticationInfo
+        https://bugs.webkit.org/show_bug.cgi?id=173083
+        <rdar://problem/32513144>
+
+        Address Darin's review comment.
+
+        * WebProcess/Plugins/PluginView.cpp:
+        (WebKit::PluginView::getAuthenticationInfo):
+
 2017-06-07  Ryosuke Niwa  <[email protected]>
 
         Crash inside WebKit::PluginView::getAuthenticationInfo

Modified: releases/WebKitGTK/webkit-2.16/Source/WebKit2/WebProcess/Plugins/PluginView.cpp (218573 => 218574)


--- releases/WebKitGTK/webkit-2.16/Source/WebKit2/WebProcess/Plugins/PluginView.cpp	2017-06-20 08:59:44 UTC (rev 218573)
+++ releases/WebKitGTK/webkit-2.16/Source/WebKit2/WebProcess/Plugins/PluginView.cpp	2017-06-20 09:02:24 UTC (rev 218574)
@@ -1593,7 +1593,7 @@
 
 bool PluginView::getAuthenticationInfo(const ProtectionSpace& protectionSpace, String& username, String& password)
 {
-    RefPtr<Document> contentDocument = m_pluginElement->contentDocument();
+    auto* contentDocument = m_pluginElement->contentDocument();
     if (!contentDocument)
         return false;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to