Skip to content
Snippets Groups Projects
Commit b06ccc8df094 authored by William M. Brack's avatar William M. Brack
Browse files

applied patch from Mark Vakoc to fix problem with key matching attribute

* libxslt/keys.c: applied patch from Mark Vakoc to fix problem
  with key matching attribute node.
parent 368469cd38d9
No related branches found
No related tags found
No related merge requests found
2004-04-02 10:17:23 HKT 2004 William Brack <wbrack@mmm.com.hk>
* libxslt/keys.c: applied patch from Mark Vakoc to fix problem
with key matching attribute node.
2004-04-01 Johan Dahlin <johan@gnome.org>
* python/.cvsignore: Add generated files, to make cvs silent.
......
......@@ -654,10 +654,10 @@
break;
case XML_ATTRIBUTE_NODE: {
xmlAttrPtr attr = (xmlAttrPtr)
nodelist->nodeTab[i]->psvi;
nodelist->nodeTab[i];
attr->psvi = keyd;
break;
}
case XML_DOCUMENT_NODE:
case XML_HTML_DOCUMENT_NODE: {
xmlDocPtr kdoc = (xmlDocPtr)
......@@ -658,10 +658,10 @@
attr->psvi = keyd;
break;
}
case XML_DOCUMENT_NODE:
case XML_HTML_DOCUMENT_NODE: {
xmlDocPtr kdoc = (xmlDocPtr)
nodelist->nodeTab[i]->psvi;
nodelist->nodeTab[i];
kdoc->psvi = keyd;
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment