mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 21:24:59 +00:00
Fix bug with definition of attribute as #IMPLIED before definition with default
This commit is contained in:
parent
3dc87550a7
commit
4a9169214b
1 changed files with 5 additions and 1 deletions
|
@ -2653,7 +2653,7 @@ enum XML_Error epilogProcessor(XML_Parser parser,
|
|||
int tok = XmlPrologTok(encoding, s, end, &next);
|
||||
eventEndPtr = next;
|
||||
switch (tok) {
|
||||
case XML_TOK_TRAILING_CR:
|
||||
case -XML_TOK_PROLOG_S:
|
||||
if (defaultHandler) {
|
||||
eventEndPtr = end;
|
||||
reportDefault(parser, encoding, s, end);
|
||||
|
@ -3047,7 +3047,11 @@ reportDefault(XML_Parser parser, const ENCODING *enc, const char *s, const char
|
|||
static int
|
||||
defineAttribute(ELEMENT_TYPE *type, ATTRIBUTE_ID *attId, int isCdata, const XML_Char *value)
|
||||
{
|
||||
int i;
|
||||
DEFAULT_ATTRIBUTE *att;
|
||||
for (i = 0; i < type->nDefaultAtts; i++)
|
||||
if (attId == type->defaultAtts[i].id)
|
||||
return 1;
|
||||
if (type->nDefaultAtts == type->allocDefaultAtts) {
|
||||
if (type->allocDefaultAtts == 0) {
|
||||
type->allocDefaultAtts = 8;
|
||||
|
|
Loading…
Add table
Reference in a new issue