Title: [154182] trunk/Source/WebCore
- Revision
- 154182
- Author
- [email protected]
- Date
- 2013-08-16 08:42:17 -0700 (Fri, 16 Aug 2013)
Log Message
<https://webkit.org/b/119889> [WinCairo] Compile error.
Patch by [email protected] <[email protected]> on 2013-08-16
Reviewed by Brent Fulgham.
* platform/network/curl/ResourceHandleManager.cpp:
(WebCore::certificatePath): Use correct function name.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (154181 => 154182)
--- trunk/Source/WebCore/ChangeLog 2013-08-16 15:33:17 UTC (rev 154181)
+++ trunk/Source/WebCore/ChangeLog 2013-08-16 15:42:17 UTC (rev 154182)
@@ -1,3 +1,12 @@
+2013-08-16 [email protected] <[email protected]>
+
+ <https://webkit.org/b/119889> [WinCairo] Compile error.
+
+ Reviewed by Brent Fulgham.
+
+ * platform/network/curl/ResourceHandleManager.cpp:
+ (WebCore::certificatePath): Use correct function name.
+
2013-08-16 Brent Fulgham <[email protected]>
[Windows] Unreviewed build correction after r154165.
Modified: trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp (154181 => 154182)
--- trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp 2013-08-16 15:33:17 UTC (rev 154181)
+++ trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp 2013-08-16 15:42:17 UTC (rev 154182)
@@ -70,9 +70,9 @@
static CString certificatePath()
{
#if USE(CF)
- CFBundleRef webKitBundle = getWebKitBundle();
- if (webKitBundle) {
- RetainPtr<CFURLRef> certURLRef = adoptCF(CFBundleCopyResourceURL(webKitBundle, CFSTR("cacert"), CFSTR("pem"), CFSTR("certificates")));
+ CFBundleRef webKitBundleRef = webKitBundle();
+ if (webKitBundleRef) {
+ RetainPtr<CFURLRef> certURLRef = adoptCF(CFBundleCopyResourceURL(webKitBundleRef, CFSTR("cacert"), CFSTR("pem"), CFSTR("certificates")));
if (certURLRef) {
char path[MAX_PATH];
CFURLGetFileSystemRepresentation(certURLRef.get(), false, reinterpret_cast<UInt8*>(path), MAX_PATH);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes