aboutsummaryrefslogtreecommitdiff
path: root/libdbusmenu-glib
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-05-09 17:12:51 +0200
committerTed Gould <ted@gould.cx>2010-05-09 17:12:51 +0200
commitf279e492d60f9e6b1e5bef55bc0deaa57dd24ea0 (patch)
tree348760aeea89f239cc273c8878236281245b809b /libdbusmenu-glib
parent57dc6f720b9419260de8dd22f2665f8f7a3fad1f (diff)
downloadlibdbusmenu-f279e492d60f9e6b1e5bef55bc0deaa57dd24ea0.tar.gz
libdbusmenu-f279e492d60f9e6b1e5bef55bc0deaa57dd24ea0.tar.bz2
libdbusmenu-f279e492d60f9e6b1e5bef55bc0deaa57dd24ea0.zip
Check to make sure they're real nodes before parsing more.
Diffstat (limited to 'libdbusmenu-glib')
-rw-r--r--libdbusmenu-glib/client.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c
index d2ba541..c0d3b7a 100644
--- a/libdbusmenu-glib/client.c
+++ b/libdbusmenu-glib/client.c
@@ -533,6 +533,9 @@ build_proxies (DbusmenuClient * client)
static gint
parse_node_get_id (xmlNodePtr node)
{
+ if (node->type != XML_ELEMENT_NODE) {
+ return -1;
+ }
if (g_strcmp0((gchar *)node->name, "menu") != 0) {
/* This kills some nodes early */
g_warning("XML Node is not 'menu' it is '%s'", node->name);