mirror of
https://github.com/GNOME/libxml2.git
synced 2025-03-31 19:10:28 +08:00
fix bug #107208 avoid false duplicates when ID/REFs are defined in
* SAX.c: fix bug #107208 avoid false duplicates when ID/REFs are defined in entities content Daniel
This commit is contained in:
parent
99737f5053
commit
9ff2d4785c
@ -1,3 +1,8 @@
|
||||
Sat Mar 22 16:15:50 CET 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* SAX.c: fix bug #107208 avoid false duplicates when ID/REFs are
|
||||
defined in entities content
|
||||
|
||||
Sat Mar 22 15:53:27 CET 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* SAX.c: Fixed validation bug #108858 on namespace names using
|
||||
|
5
SAX.c
5
SAX.c
@ -1068,8 +1068,9 @@ my_attribute(void *ctx, const xmlChar *fullname, const xmlChar *value,
|
||||
ctxt->valid &= xmlValidateOneAttribute(&ctxt->vctxt, ctxt->myDoc,
|
||||
ctxt->node, ret, value);
|
||||
}
|
||||
} else if (((ctxt->replaceEntities == 0) && (ctxt->external != 2)) ||
|
||||
((ctxt->replaceEntities != 0) && (ctxt->inSubset == 0))) {
|
||||
} else if ((((ctxt->replaceEntities == 0) && (ctxt->external != 2)) ||
|
||||
((ctxt->replaceEntities != 0) && (ctxt->inSubset == 0))) &&
|
||||
(ctxt->depth == 0)) {
|
||||
/*
|
||||
* when validating, the ID registration is done at the attribute
|
||||
* validation level. Otherwise we have to do specific handling here.
|
||||
|
Loading…
x
Reference in New Issue
Block a user