Browse Source

MFB 5.2

experimental/first_unicode_implementation
Arnaud Le Blanc 18 years ago
parent
commit
763a92d7e0
  1. 4
      ext/standard/html.c

4
ext/standard/html.c

@ -533,6 +533,10 @@ inline static unsigned short get_next_char(enum entity_charset charset,
do {
if (this_char < 0x80) {
more = 0;
if(stat) {
/* we didn't finish the UTF sequence correctly */
*status = FAILURE;
}
break;
} else if (this_char < 0xc0) {
switch (stat) {

Loading…
Cancel
Save