summaryrefslogtreecommitdiff
path: root/gdbus
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2012-07-05 23:34:32 -0400
committerRyan Lortie <desrt@desrt.ca>2012-07-06 00:19:44 -0400
commitdbf4f8cd7fd1804ec4bfb6780a6cc01d7feaf45b (patch)
tree47e50eccb23e96daa71d8a782b4463b01d13eee2 /gdbus
parentb332aa9ef1a5425a8f2213289e00a38e3c9ee868 (diff)
downloaddconf-dbf4f8cd7fd1804ec4bfb6780a6cc01d7feaf45b.tar.gz
GDBus filter backend: return FALSE in error case
We were setting the GError properly, but not actually returning FALSE.
Diffstat (limited to 'gdbus')
-rw-r--r--gdbus/dconf-gdbus-filter.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdbus/dconf-gdbus-filter.c b/gdbus/dconf-gdbus-filter.c
index a5d4400..d0c0654 100644
--- a/gdbus/dconf-gdbus-filter.c
+++ b/gdbus/dconf-gdbus-filter.c
@@ -34,6 +34,8 @@ connection_state_ensure_success (ConnectionState *state,
{
if (error)
*error = g_error_copy (state->data);
+
+ return FALSE;
}
return TRUE;