Title: [207966] releases/WebKitGTK/webkit-2.14/Source/WebKit2
Revision
207966
Author
[email protected]
Date
2016-10-27 02:26:19 -0700 (Thu, 27 Oct 2016)

Log Message

Merge r207391 - [GTK] Default WebKitWebsiteDataManager is always leaked in WebKitWebContext
https://bugs.webkit.org/show_bug.cgi?id=163443

Reviewed by Michael Catanzaro.

Adopt the reference returned by webkitWebsiteDataManagerCreate().

* UIProcess/API/gtk/WebKitWebContext.cpp:
(webkitWebContextConstructed):

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.14/Source/WebKit2/ChangeLog (207965 => 207966)


--- releases/WebKitGTK/webkit-2.14/Source/WebKit2/ChangeLog	2016-10-27 09:25:36 UTC (rev 207965)
+++ releases/WebKitGTK/webkit-2.14/Source/WebKit2/ChangeLog	2016-10-27 09:26:19 UTC (rev 207966)
@@ -1,5 +1,17 @@
 2016-10-16  Carlos Garcia Campos  <[email protected]>
 
+        [GTK] Default WebKitWebsiteDataManager is always leaked in WebKitWebContext
+        https://bugs.webkit.org/show_bug.cgi?id=163443
+
+        Reviewed by Michael Catanzaro.
+
+        Adopt the reference returned by webkitWebsiteDataManagerCreate().
+
+        * UIProcess/API/gtk/WebKitWebContext.cpp:
+        (webkitWebContextConstructed):
+
+2016-10-16  Carlos Garcia Campos  <[email protected]>
+
         [GTK] WebKitWebPage URI not updated after URI is modified by InjectedBundlePageResourceLoadClient::willSendRequestForFrame
         https://bugs.webkit.org/show_bug.cgi?id=163389
 

Modified: releases/WebKitGTK/webkit-2.14/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp (207965 => 207966)


--- releases/WebKitGTK/webkit-2.14/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp	2016-10-27 09:25:36 UTC (rev 207965)
+++ releases/WebKitGTK/webkit-2.14/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp	2016-10-27 09:26:19 UTC (rev 207966)
@@ -278,7 +278,7 @@
     priv->processPool = WebProcessPool::create(configuration);
 
     if (!priv->websiteDataManager)
-        priv->websiteDataManager = webkitWebsiteDataManagerCreate(websiteDataStoreConfigurationForWebProcessPoolConfiguration(configuration));
+        priv->websiteDataManager = adoptGRef(webkitWebsiteDataManagerCreate(websiteDataStoreConfigurationForWebProcessPoolConfiguration(configuration)));
 
     priv->requestManager = priv->processPool->supplement<WebSoupCustomProtocolRequestManager>();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to