From: Rui Hirokawa Date: Tue, 18 Oct 2011 14:03:44 +0000 (+0000) Subject: fixed byte length of utf-8. X-Git-Tag: php-5.5.0alpha1~1008 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec2670a27632f9e6592586f7f4d8378c7012645c;p=php 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};