Title: [193942] trunk/Source/WebCore
Revision
193942
Author
mmaxfi...@apple.com
Date
2015-12-10 19:51:29 -0800 (Thu, 10 Dec 2015)

Log Message

Build fix

Unreviewed.

* platform/graphics/cocoa/FontCocoa.mm:
(WebCore::smallCapsTrueTypeDictionary):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (193941 => 193942)


--- trunk/Source/WebCore/ChangeLog	2015-12-11 03:41:18 UTC (rev 193941)
+++ trunk/Source/WebCore/ChangeLog	2015-12-11 03:51:29 UTC (rev 193942)
@@ -1,3 +1,12 @@
+2015-12-10  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+        Build fix
+
+        Unreviewed.
+
+        * platform/graphics/cocoa/FontCocoa.mm:
+        (WebCore::smallCapsTrueTypeDictionary):
+
 2015-12-10  Simon Fraser  <simon.fra...@apple.com>
 
         Mordernize viewport dumping

Modified: trunk/Source/WebCore/platform/graphics/cocoa/FontCocoa.mm (193941 => 193942)


--- trunk/Source/WebCore/platform/graphics/cocoa/FontCocoa.mm	2015-12-11 03:41:18 UTC (rev 193941)
+++ trunk/Source/WebCore/platform/graphics/cocoa/FontCocoa.mm	2015-12-11 03:51:29 UTC (rev 193942)
@@ -340,7 +340,7 @@
     RetainPtr<CFNumberRef> key = adoptCF(CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &rawKey));
     RetainPtr<CFNumberRef> value = adoptCF(CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &rawValue));
     CFTypeRef keys[] = { kCTFontFeatureTypeIdentifierKey, kCTFontFeatureSelectorIdentifierKey };
-    CFTypeRef values[] = { key, value };
+    CFTypeRef values[] = { key.get(), value.get() };
     return adoptCF(CFDictionaryCreate(kCFAllocatorDefault, keys, values, WTF_ARRAY_LENGTH(keys), &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to