diff options
author | Ted Gould <ted@canonical.com> | 2009-04-13 14:07:46 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-04-13 14:07:46 -0500 |
commit | 24e268d166ef026a3f1c4e7b09ae13d15bf427eb (patch) | |
tree | 9347508c65c1593365b1a73160c97e78f6fa8775 | |
parent | bde7e27a7b972017f16ebf40ad173896d22bec25 (diff) | |
download | libayatana-indicator-24e268d166ef026a3f1c4e7b09ae13d15bf427eb.tar.gz libayatana-indicator-24e268d166ef026a3f1c4e7b09ae13d15bf427eb.tar.bz2 libayatana-indicator-24e268d166ef026a3f1c4e7b09ae13d15bf427eb.zip |
Fleshing out some
-rw-r--r-- | libindicate/listener.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libindicate/listener.c b/libindicate/listener.c index 6613e3d..420d8cd 100644 --- a/libindicate/listener.c +++ b/libindicate/listener.c @@ -1059,6 +1059,16 @@ introspect_this (DBusGProxy * proxy, char * OUT_data, GError * error, gpointer d { g_debug("Introspect this:\n%s", OUT_data); proxy_t * server = (proxy_t *)data; + if (proxy != NULL) { + g_object_unref(proxy); + } + if (error != NULL) { + /* We probably couldn't introspect that far up. That's + life, it happens. */ + g_debug("Introspection error on %s object %s: %s", server->name, _introspector_fullpath[server->introspect_level], error->message); + return; + } + if (OUT_data != NULL) { xmlDocPtr xmldoc; /* Parse the XML */ |