]> Kevux Git Server - fll/commitdiff
Bugfix: Uppercase 'T' needs to be supported.
authorKevin Day <thekevinday@gmail.com>
Sat, 18 Jun 2022 23:58:03 +0000 (18:58 -0500)
committerKevin Day <thekevinday@gmail.com>
Sat, 18 Jun 2022 23:58:03 +0000 (18:58 -0500)
I incorrectly used lower case 't' in both condition blocks when I need to check for both lower and upper.

level_1/fl_conversion/c/private-conversion.c

index 2e51f6b0a084fb0e8fa8dfd9707eb52724ccee7f..7fa6642e4b3c74bc9f4bca9fbd3351f59bcb2549 100644 (file)
@@ -381,7 +381,7 @@ extern "C" {
         if (string[j] > f_string_ascii_slash_backward_s.string[0] && string[j] < f_string_ascii_colon_s.string[0]) {
           mode = 10;
         }
-        else if (string[j] == f_string_ascii_t_s.string[0] || string[j] == f_string_ascii_t_s.string[0]) {
+        else if (string[j] == f_string_ascii_t_s.string[0] || string[j] == f_string_ascii_T_s.string[0]) {
           mode = 10;
           offset += 2;
         }
@@ -537,7 +537,7 @@ extern "C" {
         else if (string[j] > f_string_ascii_slash_backward_s.string[0] && string[j] < f_string_ascii_colon_s.string[0]) {
           mode = 10;
         }
-        else if (string[j] == f_string_ascii_t_s.string[0] || string[j] == f_string_ascii_t_s.string[0]) {
+        else if (string[j] == f_string_ascii_t_s.string[0] || string[j] == f_string_ascii_T_s.string[0]) {
           mode = 10;
           offset += 2;
         }