Title: [214090] trunk/Source/WebCore
Revision
214090
Author
[email protected]
Date
2017-03-16 18:43:05 -0700 (Thu, 16 Mar 2017)

Log Message

Fix GTK build.

* platform/network/soup/SocketStreamHandleImplSoup.cpp:
(WebCore::SocketStreamHandleImpl::readBytes):
Changing RefPtr to Ref broke something.
For the record, EWS was orange so I couldn't see these build failures.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (214089 => 214090)


--- trunk/Source/WebCore/ChangeLog	2017-03-17 01:37:12 UTC (rev 214089)
+++ trunk/Source/WebCore/ChangeLog	2017-03-17 01:43:05 UTC (rev 214090)
@@ -4,6 +4,15 @@
 
         * platform/network/soup/SocketStreamHandleImplSoup.cpp:
         (WebCore::SocketStreamHandleImpl::readBytes):
+        Changing RefPtr to Ref broke something.
+        For the record, EWS was orange so I couldn't see these build failures.
+
+2017-03-16  Alex Christensen  <[email protected]>
+
+        Fix GTK build.
+
+        * platform/network/soup/SocketStreamHandleImplSoup.cpp:
+        (WebCore::SocketStreamHandleImpl::readBytes):
         didFailToReceiveSocketStreamData needs a parameter.
 
 2017-03-16  Dean Jackson  <[email protected]>

Modified: trunk/Source/WebCore/platform/network/soup/SocketStreamHandleImplSoup.cpp (214089 => 214090)


--- trunk/Source/WebCore/platform/network/soup/SocketStreamHandleImplSoup.cpp	2017-03-17 01:37:12 UTC (rev 214089)
+++ trunk/Source/WebCore/platform/network/soup/SocketStreamHandleImplSoup.cpp	2017-03-17 01:43:05 UTC (rev 214090)
@@ -145,7 +145,7 @@
     }
 
     // The client can close the handle, potentially removing the last reference.
-    Ref<SocketStreamHandle> protectedThis(*this);
+    RefPtr<SocketStreamHandle> protectedThis(this);
     if (bytesRead == -1)
         m_client.didFailToReceiveSocketStreamData(*this);
     else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to