mirror of
https://github.com/php/php-src.git
synced 2025-08-16 22:18:50 +02:00
Fixed bug #65720 ext/mbstring/libmbfl/filters/mbfilter_cp5022x.c:281: bad if test
This commit is contained in:
parent
d1401f6059
commit
f9c595f3c0
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ retry:
|
||||||
w = cp932ext1_ucs_table[s - cp932ext1_ucs_table_min];
|
w = cp932ext1_ucs_table[s - cp932ext1_ucs_table_min];
|
||||||
} else if (s >= cp932ext2_ucs_table_min && s < cp932ext2_ucs_table_max) {
|
} else if (s >= cp932ext2_ucs_table_min && s < cp932ext2_ucs_table_max) {
|
||||||
w = cp932ext2_ucs_table[s - cp932ext2_ucs_table_min];
|
w = cp932ext2_ucs_table[s - cp932ext2_ucs_table_min];
|
||||||
} else if (s >= cp932ext3_ucs_table_min && s < cp932ext2_ucs_table_max) {
|
} else if (s >= cp932ext3_ucs_table_min && s < cp932ext3_ucs_table_max) {
|
||||||
w = cp932ext3_ucs_table[s - cp932ext3_ucs_table_min];
|
w = cp932ext3_ucs_table[s - cp932ext3_ucs_table_min];
|
||||||
} else if (s >= 94 * 94 && s < 114 * 94) {
|
} else if (s >= 94 * 94 && s < 114 * 94) {
|
||||||
/* user-defined => PUA (Microsoft extended) */
|
/* user-defined => PUA (Microsoft extended) */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue