summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRui Hirokawa <hirokawa@php.net>2011-10-18 14:04:13 +0000
committerRui Hirokawa <hirokawa@php.net>2011-10-18 14:04:13 +0000
commit0d73145490d91cdf86685cbedac09629a841c6dc (patch)
tree69447853bfc3284d148faea26bbcb053a230652c
parentd4ae4e79db0e898fc74a9a6b7b938b59463a8c7d (diff)
downloadphp-git-0d73145490d91cdf86685cbedac09629a841c6dc.tar.gz
MFH: fixed byte length of utf-8.
-rw-r--r--ext/mbstring/libmbfl/filters/mbfilter_utf8.c2
1 files changed, 1 insertions, 1 deletions
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};