when a bool field is empty return false, not signal 11.. :|
authorDana Jansens <danakj@orodu.net>
Mon, 4 Jun 2007 15:22:20 +0000 (15:22 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 4 Jun 2007 15:22:20 +0000 (15:22 +0000)
parser/parse.c

index 196ba93..f2dcb09 100644 (file)
@@ -251,11 +251,11 @@ gboolean parse_bool(xmlDocPtr doc, xmlNodePtr node)
 {
     xmlChar *c = xmlNodeListGetString(doc, node->children, TRUE);
     gboolean b = FALSE;
-    if (!xmlStrcasecmp(c, (const xmlChar*) "true"))
+    if (c && !xmlStrcasecmp(c, (const xmlChar*) "true"))
         b = TRUE;
-    else if (!xmlStrcasecmp(c, (const xmlChar*) "yes"))
+    else if (c && !xmlStrcasecmp(c, (const xmlChar*) "yes"))
         b = TRUE;
-    else if (!xmlStrcasecmp(c, (const xmlChar*) "on"))
+    else if (c && !xmlStrcasecmp(c, (const xmlChar*) "on"))
         b = TRUE;
     xmlFree(c);
     return b;