From: Rui Hirokawa Date: Tue, 18 Oct 2011 14:04:13 +0000 (+0000) Subject: MFH: fixed byte length of utf-8. X-Git-Tag: php-5.4.0beta2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d73145490d91cdf86685cbedac09629a841c6dc;p=php MFH: fixed byte length of utf-8. --- diff --git a/ext/mbstring/libmbfl/filters/mbfilter_utf8.c b/ext/mbstring/libmbfl/filters/mbfilter_utf8.c index ec7fab3564..e196df147c 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_utf8.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_utf8.c @@ -52,7 +52,7 @@ const unsigned char mblen_table_utf8[] = { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1 + 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }; static const char *mbfl_encoding_utf8_aliases[] = {"utf8", NULL};