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:
Kasimier T. Buchcik 2005-07-08 19:58:37 +00:00
parent 85aed6d010
commit 8798b735a6
2 changed files with 7 additions and 1 deletions

View File

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

View File

@ -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.