Title: [252853] trunk/Source/WTF
Revision
252853
Author
[email protected]
Date
2019-11-25 03:39:48 -0800 (Mon, 25 Nov 2019)

Log Message

REGRESSION(r252770): [GTK][WPE] Remove inspector broken in debug builds after r252770
https://bugs.webkit.org/show_bug.cgi?id=204569

Reviewed by Žan Doberšek.

We need to call relaxAdoptionRequirement() in SocketConnection constructor because we are taking a reference for
the read monitor lambda.

* wtf/glib/SocketConnection.cpp:
(WTF::SocketConnection::SocketConnection):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (252852 => 252853)


--- trunk/Source/WTF/ChangeLog	2019-11-25 11:25:06 UTC (rev 252852)
+++ trunk/Source/WTF/ChangeLog	2019-11-25 11:39:48 UTC (rev 252853)
@@ -1,3 +1,16 @@
+2019-11-25  Carlos Garcia Campos  <[email protected]>
+
+        REGRESSION(r252770): [GTK][WPE] Remove inspector broken in debug builds after r252770
+        https://bugs.webkit.org/show_bug.cgi?id=204569
+
+        Reviewed by Žan Doberšek.
+
+        We need to call relaxAdoptionRequirement() in SocketConnection constructor because we are taking a reference for
+        the read monitor lambda.
+
+        * wtf/glib/SocketConnection.cpp:
+        (WTF::SocketConnection::SocketConnection):
+
 2019-11-25  Fujii Hironori  <[email protected]>
 
         Ran sort-Xcode-project-file.

Modified: trunk/Source/WTF/wtf/glib/SocketConnection.cpp (252852 => 252853)


--- trunk/Source/WTF/wtf/glib/SocketConnection.cpp	2019-11-25 11:25:06 UTC (rev 252852)
+++ trunk/Source/WTF/wtf/glib/SocketConnection.cpp	2019-11-25 11:39:48 UTC (rev 252853)
@@ -34,6 +34,8 @@
     , m_messageHandlers(messageHandlers)
     , m_userData(userData)
 {
+    relaxAdoptionRequirement();
+
     m_readBuffer.reserveInitialCapacity(defaultBufferSize);
     m_writeBuffer.reserveInitialCapacity(defaultBufferSize);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to