mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser.c: xmlParseCharData peek behavior fixed wrt newlines
Previously, xmlParseCharData and xmlParseComment would consider 0xA to be unhandleable when seen as the first byte of an input chunk, and fall back to xmlParseCharDataComplex and xmlParseCommentComplex, which have different memory and performance characteristics. Fixes GNOME/libxml2#192
This commit is contained in:
parent
b46016b870
commit
c0c26ff201
4
parser.c
4
parser.c
@ -4506,7 +4506,7 @@ get_more:
|
||||
if (ctxt->instate == XML_PARSER_EOF)
|
||||
return;
|
||||
in = ctxt->input->cur;
|
||||
} while (((*in >= 0x20) && (*in <= 0x7F)) || (*in == 0x09));
|
||||
} while (((*in >= 0x20) && (*in <= 0x7F)) || (*in == 0x09) || (*in == 0x0a));
|
||||
nbchar = 0;
|
||||
}
|
||||
ctxt->input->line = line;
|
||||
@ -4987,7 +4987,7 @@ get_more:
|
||||
ctxt->input->col++;
|
||||
goto get_more;
|
||||
}
|
||||
} while (((*in >= 0x20) && (*in <= 0x7F)) || (*in == 0x09));
|
||||
} while (((*in >= 0x20) && (*in <= 0x7F)) || (*in == 0x09) || (*in == 0x0a));
|
||||
xmlParseCommentComplex(ctxt, buf, len, size);
|
||||
ctxt->instate = state;
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user