Fix bug with default handler and ignored marked section.

This commit is contained in:
James Clark 1999-07-09 12:03:07 +00:00
parent b1b875e78e
commit 75ccce3db8

View file

@ -2598,7 +2598,8 @@ doProlog(XML_Parser parser,
case XML_TOK_PARAM_ENTITY_REF:
break;
default:
reportDefault(parser, enc, s, next);
if (role != XML_ROLE_IGNORE_SECT)
reportDefault(parser, enc, s, next);
}
}
s = next;