mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fixed evaluation of attributes. Actually only attribute at the first level
* pattern.c: Fixed evaluation of attributes. Actually only attribute at the first level were evaluated (e.g. "@attr"); expression like "foo/@attr" always failed.
This commit is contained in:
parent
85aed6d010
commit
8798b735a6
@ -1,3 +1,9 @@
|
||||
Fri Jul 8 21:56:04 CEST 2005 Kasimier Buchcik <libxml2-cvs@cazic.net>
|
||||
|
||||
* pattern.c: Fixed evaluation of attributes. Actually only
|
||||
attribute at the first level were evaluated (e.g. "@attr");
|
||||
expression like "foo/@attr" always failed.
|
||||
|
||||
Fri Jul 8 20:04:29 CEST 2005 Kasimier Buchcik <libxml2-cvs@cazic.net>
|
||||
|
||||
* xmlschemas.c: tiny fix in xmlSchemaValidateStream() if a
|
||||
|
@ -1683,7 +1683,7 @@ xmlStreamPushInternal(xmlStreamCtxtPtr stream,
|
||||
* Check for correct node-type.
|
||||
*/
|
||||
if ((nodeType == XML_ATTRIBUTE_NODE) &&
|
||||
((comp->steps[0].flags & XML_STREAM_STEP_ATTR) == 0))
|
||||
((comp->steps[step].flags & XML_STREAM_STEP_ATTR) == 0))
|
||||
goto next_state;
|
||||
/*
|
||||
* Compare local/namespace-name.
|
||||
|
Loading…
x
Reference in New Issue
Block a user