mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Add a missing element check
This commit is contained in:
parent
aa017c54dd
commit
264cee695a
@ -39,9 +39,10 @@
|
||||
static const xmlChar *xmlRelaxNGNs = (const xmlChar *)
|
||||
"http://relaxng.org/ns/structure/1.0";
|
||||
|
||||
#define IS_RELAXNG(node, type) \
|
||||
#define IS_RELAXNG(node, typ) \
|
||||
((node != NULL) && (node->ns != NULL) && \
|
||||
(xmlStrEqual(node->name, (const xmlChar *) type)) && \
|
||||
(node->type == XML_ELEMENT_NODE) && \
|
||||
(xmlStrEqual(node->name, (const xmlChar *) typ)) && \
|
||||
(xmlStrEqual(node->ns->href, xmlRelaxNGNs)))
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user