Title: [229498] trunk/Source/WebCore
Revision
229498
Author
ross.kirsl...@sony.com
Date
2018-03-09 19:10:41 -0800 (Fri, 09 Mar 2018)

Log Message

Unreviewed. Fix WinCairo build after r229497.

* platform/MIMETypeRegistry.cpp:
(WebCore::MIMETypeRegistry::getNormalizedMIMEType):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (229497 => 229498)


--- trunk/Source/WebCore/ChangeLog	2018-03-10 01:47:28 UTC (rev 229497)
+++ trunk/Source/WebCore/ChangeLog	2018-03-10 03:10:41 UTC (rev 229498)
@@ -1,5 +1,12 @@
 2018-03-09  Ross Kirsling  <ross.kirsl...@sony.com>
 
+        Unreviewed. Fix WinCairo build after r229497.
+
+        * platform/MIMETypeRegistry.cpp:
+        (WebCore::MIMETypeRegistry::getNormalizedMIMEType):
+
+2018-03-09  Ross Kirsling  <ross.kirsl...@sony.com>
+
         Clean up MIMETypeRegistry::mimeTypeAssociationMap for Curl
         https://bugs.webkit.org/show_bug.cgi?id=170529
 

Modified: trunk/Source/WebCore/platform/MIMETypeRegistry.cpp (229497 => 229498)


--- trunk/Source/WebCore/platform/MIMETypeRegistry.cpp	2018-03-10 01:47:28 UTC (rev 229497)
+++ trunk/Source/WebCore/platform/MIMETypeRegistry.cpp	2018-03-10 03:10:41 UTC (rev 229498)
@@ -772,7 +772,7 @@
 
         HashMap<String, String, ASCIICaseInsensitiveHash> map;
         for (auto& pair : mimeTypeAssociations)
-            map->add(ASCIILiteral { pair.first }, ASCIILiteral { pair.second });
+            map.add(ASCIILiteral { pair.first }, ASCIILiteral { pair.second });
         return map;
     }());
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to