summaryrefslogtreecommitdiff
path: root/registryd
diff options
context:
space:
mode:
authorFrederic Crozat <fcrozat@novell.com>2011-02-01 17:06:39 +0100
committerFrederic Crozat <fcrozat@novell.com>2011-02-01 18:08:07 +0100
commit68fd6e91ede321beb0e08bc98261938e56656a36 (patch)
treed9e678960f686652794e0a6da10902a56a118a9c /registryd
parentcfac92cfd9bfb169a45cc351451b63939b459243 (diff)
downloadat-spi2-core-68fd6e91ede321beb0e08bc98261938e56656a36.tar.gz
Ensure variable is initialized
https://bugzilla.gnome.org/show_bug.cgi?id=641164
Diffstat (limited to 'registryd')
-rw-r--r--registryd/registry-main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/registryd/registry-main.c b/registryd/registry-main.c
index e41a812b..720cd526 100644
--- a/registryd/registry-main.c
+++ b/registryd/registry-main.c
@@ -367,7 +367,7 @@ need_to_quit ()
gconf_client_get_bool = dlsym (gconf, "gconf_client_get_bool");
}
- if (!gconf_client || !gconf_client_get_bool)
+ if (!gconf_client_get_default || !gconf_client_get_bool)
{
if (gconf)
dlclose (gconf);