mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 05:34:59 +00:00
Added some comments regarding previous fix (bug #602729).
This commit is contained in:
parent
fb523d10cc
commit
c6160c2aee
2 changed files with 3 additions and 1 deletions
|
@ -4022,7 +4022,8 @@ epilogProcessor(XML_Parser parser,
|
|||
int tok = XmlPrologTok(encoding, s, end, &next);
|
||||
eventEndPtr = next;
|
||||
switch (tok) {
|
||||
case -XML_TOK_PROLOG_S:
|
||||
/* report partial linebreak - it might be the last token */
|
||||
case -XML_TOK_PROLOG_S:
|
||||
if (defaultHandler) {
|
||||
eventEndPtr = next;
|
||||
reportDefault(parser, encoding, s, next);
|
||||
|
|
|
@ -1011,6 +1011,7 @@ PREFIX(prologTok)(const ENCODING *enc, const char *ptr, const char *end,
|
|||
case BT_CR:
|
||||
if (ptr + MINBPC(enc) == end) {
|
||||
*nextTokPtr = end;
|
||||
/* indicate that this might be part of a CR/LF pair */
|
||||
return -XML_TOK_PROLOG_S;
|
||||
}
|
||||
/* fall through */
|
||||
|
|
Loading…
Add table
Reference in a new issue