Title: [149437] trunk/Source/WebCore
Revision
149437
Author
[email protected]
Date
2013-05-01 10:29:18 -0700 (Wed, 01 May 2013)

Log Message

BUILD FIX (r149410): CFRunLoopStop() doesn't know what to do with a RetainPtr<CFRunLoopRef>

Fixes the following build failure:

    WebCore/platform/cf/RunLoopCF.cpp:82:5: error: no matching function for call to 'CFRunLoopStop'
        CFRunLoopStop(m_runLoop);
        ^~~~~~~~~~~~~

* platform/cf/RunLoopCF.cpp:
(WebCore::RunLoop::stop): Call RetainPtr::get().

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (149436 => 149437)


--- trunk/Source/WebCore/ChangeLog	2013-05-01 17:15:46 UTC (rev 149436)
+++ trunk/Source/WebCore/ChangeLog	2013-05-01 17:29:18 UTC (rev 149437)
@@ -1,3 +1,16 @@
+2013-05-01  David Kilzer  <[email protected]>
+
+        BUILD FIX (r149410): CFRunLoopStop() doesn't know what to do with a RetainPtr<CFRunLoopRef>
+
+        Fixes the following build failure:
+
+            WebCore/platform/cf/RunLoopCF.cpp:82:5: error: no matching function for call to 'CFRunLoopStop'
+                CFRunLoopStop(m_runLoop);
+                ^~~~~~~~~~~~~
+
+        * platform/cf/RunLoopCF.cpp:
+        (WebCore::RunLoop::stop): Call RetainPtr::get().
+
 2013-05-01  Per-Erik Brodin  <[email protected]>
 
         EventSource: Loss of reconnect time precision due to integer division

Modified: trunk/Source/WebCore/platform/cf/RunLoopCF.cpp (149436 => 149437)


--- trunk/Source/WebCore/platform/cf/RunLoopCF.cpp	2013-05-01 17:15:46 UTC (rev 149436)
+++ trunk/Source/WebCore/platform/cf/RunLoopCF.cpp	2013-05-01 17:29:18 UTC (rev 149437)
@@ -79,7 +79,7 @@
 void RunLoop::stop()
 {
     ASSERT(m_runLoop == CFRunLoopGetCurrent());
-    CFRunLoopStop(m_runLoop);
+    CFRunLoopStop(m_runLoop.get());
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to