applied patch to xmlSetNsProp from Mike Hommey Daniel

* tree.c: applied patch to xmlSetNsProp from Mike Hommey
Daniel
This commit is contained in:
Daniel Veillard 2005-02-09 16:48:53 +00:00
parent 2b2e02d6bb
commit b6b36d37f2
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Wed Feb 9 17:47:40 CET 2005 Daniel Veillard <daniel@veillard.com>
* tree.c: applied patch to xmlSetNsProp from Mike Hommey
Sun Feb 6 00:17:57 CET 2005 Daniel Veillard <daniel@veillard.com>
* pattern.c xmllint.c: fixed implementation for |

2
tree.c
View File

@ -6446,7 +6446,7 @@ xmlSetNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name,
const xmlChar *value) {
xmlAttrPtr prop;
if ((node == NULL) || (name == NULL))
if ((node == NULL) || (name == NULL) || (node->type != XML_ELEMENT_NODE))
return(NULL);
if (ns == NULL)