From dbf4f8cd7fd1804ec4bfb6780a6cc01d7feaf45b Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Thu, 5 Jul 2012 23:34:32 -0400 Subject: GDBus filter backend: return FALSE in error case We were setting the GError properly, but not actually returning FALSE. --- gdbus/dconf-gdbus-filter.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gdbus') 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; -- cgit v1.2.1