summaryrefslogtreecommitdiffstats
path: root/parse-xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'parse-xml.c')
-rw-r--r--parse-xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-xml.c b/parse-xml.c
index 9b5f97e21..45ac984df 100644
--- a/parse-xml.c
+++ b/parse-xml.c
@@ -1762,7 +1762,7 @@ static const char *nodename(xmlNode *node, char *buf, int len)
int levels = 2;
char *p = buf;
- if (node->type != XML_CDATA_SECTION_NODE && (!node || !node->name)) {
+ if (!node || (node->type != XML_CDATA_SECTION_NODE && !node->name)) {
return "root";
}