]> Kevux Git Server - fll/commitdiff
Bugfix: Incorrect code used in UTF8 character code for U+12C1.
authorKevin Day <thekevinday@gmail.com>
Fri, 4 Mar 2022 03:55:03 +0000 (21:55 -0600)
committerKevin Day <thekevinday@gmail.com>
Fri, 4 Mar 2022 03:55:03 +0000 (21:55 -0600)
This bug was discovered due to a CLang warning that GCC did not identify.

level_0/f_utf/c/utf/private-is_unassigned.c

index e84a2fb433c51fd81000a2c8d7f5acb41f59e3d5..6965e07030b12a779db5cf9051b9536a0ef06bac 100644 (file)
@@ -611,7 +611,7 @@ extern "C" {
       }
 
       // Ethiopic: U+12B7, U+12BF, U+12C1, U+12C6.
-      if (character == 0xe18ab700 || character == 0xe18abf00 || character == 0x8e18b8100 || character == 0xe18b8600) {
+      if (character == 0xe18ab700 || character == 0xe18abf00 || character == 0xe18b8100 || character == 0xe18b8600) {
         return F_true;
       }