summaryrefslogtreecommitdiff
path: root/tools/gator/daemon/mxml/mxml-file.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gator/daemon/mxml/mxml-file.c')
-rw-r--r--tools/gator/daemon/mxml/mxml-file.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/gator/daemon/mxml/mxml-file.c b/tools/gator/daemon/mxml/mxml-file.c
index 3812c253fc3e..fa540edf20cd 100644
--- a/tools/gator/daemon/mxml/mxml-file.c
+++ b/tools/gator/daemon/mxml/mxml-file.c
@@ -1,5 +1,5 @@
/*
- * "$Id: mxml-file.c 455 2014-01-05 03:28:03Z msweet $"
+ * "$Id: mxml-file.c 459 2014-10-19 17:21:48Z msweet $"
*
* File loading code for Mini-XML, a small XML-like file parsing library.
*
@@ -1801,6 +1801,8 @@ mxml_load_data(
if (cb)
type = (*cb)(parent);
+ else
+ type = MXML_TEXT;
}
}
}
@@ -1887,6 +1889,8 @@ mxml_load_data(
if (cb)
type = (*cb)(parent);
+ else
+ type = MXML_TEXT;
}
}
}
@@ -3052,5 +3056,5 @@ mxml_write_ws(mxml_node_t *node, /* I - Current node */
/*
- * End of "$Id: mxml-file.c 455 2014-01-05 03:28:03Z msweet $".
+ * End of "$Id: mxml-file.c 459 2014-10-19 17:21:48Z msweet $".
*/