Title: [260500] trunk/Source/_javascript_Core
Revision
260500
Author
ysuz...@apple.com
Date
2020-04-21 21:12:03 -0700 (Tue, 21 Apr 2020)

Log Message

Unreviewd, speculative Windows build fix part 2
https://bugs.webkit.org/show_bug.cgi?id=210834

* runtime/Options.cpp:
(JSC::strncasecmp):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (260499 => 260500)


--- trunk/Source/_javascript_Core/ChangeLog	2020-04-22 04:07:44 UTC (rev 260499)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-04-22 04:12:03 UTC (rev 260500)
@@ -1,5 +1,13 @@
 2020-04-21  Yusuke Suzuki  <ysuz...@apple.com>
 
+        Unreviewd, speculative Windows build fix part 2
+        https://bugs.webkit.org/show_bug.cgi?id=210834
+
+        * runtime/Options.cpp:
+        (JSC::strncasecmp):
+
+2020-04-21  Yusuke Suzuki  <ysuz...@apple.com>
+
         Unreviewed, fix windows build failure
         https://bugs.webkit.org/show_bug.cgi?id=210834
 

Modified: trunk/Source/_javascript_Core/runtime/Options.cpp (260499 => 260500)


--- trunk/Source/_javascript_Core/runtime/Options.cpp	2020-04-22 04:07:44 UTC (rev 260499)
+++ trunk/Source/_javascript_Core/runtime/Options.cpp	2020-04-22 04:12:03 UTC (rev 260500)
@@ -539,7 +539,7 @@
 // FIXME: Use equalLettersIgnoringASCIICase.
 inline bool strncasecmp(const char* str1, const char* str2, size_t n)
 {
-    return _strnimp(str1, str2, n);
+    return _strnicmp(str1, str2, n);
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to