mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 05:34:59 +00:00
Fix for bug #600479: error decoding UTF-8 triplet
This commit is contained in:
parent
19dce96507
commit
969d3363fe
1 changed files with 5 additions and 1 deletions
|
@ -84,7 +84,11 @@
|
|||
#define UTF8_INVALID3(p) \
|
||||
(((p)[2] & 0x80) == 0 \
|
||||
|| \
|
||||
((*p) == 0xEF ? (p)[2] > 0xBD : ((p)[2] & 0xC0) == 0xC0) \
|
||||
((*p) == 0xEF && (p)[1] == 0xBF \
|
||||
? \
|
||||
(p)[2] > 0xBD \
|
||||
: \
|
||||
((p)[2] & 0xC0) == 0xC0) \
|
||||
|| \
|
||||
((*p) == 0xE0 \
|
||||
? \
|
||||
|
|
Loading…
Add table
Reference in a new issue