Added some comments regarding previous fix (bug #602729).

This commit is contained in:
Karl Waclawek 2002-08-31 02:27:20 +00:00
parent fb523d10cc
commit c6160c2aee
2 changed files with 3 additions and 1 deletions

View file

@ -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);

View file

@ -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 */