diff options
Diffstat (limited to 'ext/json/utf8_decode.c')
-rw-r--r-- | ext/json/utf8_decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/utf8_decode.c b/ext/json/utf8_decode.c index cea1f8cec8..2d0422bedb 100644 --- a/ext/json/utf8_decode.c +++ b/ext/json/utf8_decode.c @@ -165,7 +165,7 @@ utf8_decode_next(json_utf8_decode *utf8) /* Three continuation (65536 to 1114111) */ - if ((c & 0xF1) == 0xF0) { + if ((c & 0xF8) == 0xF0) { int c1 = cont(utf8); int c2 = cont(utf8); int c3 = cont(utf8); |