Title: [144503] trunk/Source/WebCore
Revision
144503
Author
[email protected]
Date
2013-03-01 14:14:33 -0800 (Fri, 01 Mar 2013)

Log Message

Unreviewed AppleWin build fix.

* platform/network/cf/ResourceHandleCFNet.cpp:
(WebCore::ResourceHandle::createCFURLConnection):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (144502 => 144503)


--- trunk/Source/WebCore/ChangeLog	2013-03-01 22:03:48 UTC (rev 144502)
+++ trunk/Source/WebCore/ChangeLog	2013-03-01 22:14:33 UTC (rev 144503)
@@ -1,3 +1,10 @@
+2013-03-01  Roger Fong  <[email protected]>
+
+        Unreviewed AppleWin build fix.
+
+        * platform/network/cf/ResourceHandleCFNet.cpp:
+        (WebCore::ResourceHandle::createCFURLConnection):
+
 2013-03-01  Martin Robinson  <[email protected]>
 
         [GTK] Allow sharing the WebCore include list with the Chromium build

Modified: trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp (144502 => 144503)


--- trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp	2013-03-01 22:03:48 UTC (rev 144502)
+++ trunk/Source/WebCore/platform/network/cf/ResourceHandleCFNet.cpp	2013-03-01 22:14:33 UTC (rev 144503)
@@ -472,7 +472,7 @@
     RetainPtr<CFDictionaryRef> propertiesDictionary = adoptCF(CFDictionaryCreate(0, (const void**)&kCFURLConnectionSocketStreamProperties, (const void**)&streamProperties, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
     CFRelease(streamProperties);
 
-    d->m_connection.adoptCF(CFURLConnectionCreateWithProperties(0, request.get(), reinterpret_cast<CFURLConnectionClient*>(&client), connectionProperties.get()));
+    d->m_connection.adoptCF(CFURLConnectionCreateWithProperties(0, request.get(), reinterpret_cast<CFURLConnectionClient*>(&client), propertiesDictionary.get()));
 }
 
 bool ResourceHandle::start()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to