[glib] gdbusconnection: Avoid tripping assertion if we fail to authenticate twice
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] gdbusconnection: Avoid tripping assertion if we fail to authenticate twice
- Date: Wed, 13 Apr 2011 19:01:24 +0000 (UTC)
commit 68b16deb1f4ec739f80291156f2e0e2eed87d225
Author: Colin Walters <walters verbum org>
Date: Wed Apr 13 14:03:58 2011 -0400
gdbusconnection: Avoid tripping assertion if we fail to authenticate twice
If g_bus_get_sync() fails in authentication (because e.g. the process
uid, doesn't match the expected in EXTERNAL), a secondary call to
g_bus_get_sync() would notice we aren't initialized, and try
to initialize.
The assertion here is just wrong; we now explicitly and clearly handle
both cases where we already have an error, or we already succeeded.
https://bugzilla.gnome.org/show_bug.cgi?id=635694
gio/gdbusconnection.c | 15 ++++++++++-----
1 files changed, 10 insertions(+), 5 deletions(-)
---
diff --git a/gio/gdbusconnection.c b/gio/gdbusconnection.c
index 3bacf81..999cb80 100644
--- a/gio/gdbusconnection.c
+++ b/gio/gdbusconnection.c
@@ -2264,15 +2264,20 @@ initable_init (GInitable *initable,
ret = FALSE;
+ /* First, handle the case where the connection already has an
+ * initialization error set.
+ */
+ if (connection->initialization_error != NULL)
+ goto out;
+
+ /* Also make this a no-op if we're already initialized fine */
if (connection->is_initialized)
{
- if (connection->stream != NULL)
- ret = TRUE;
- else
- g_assert (connection->initialization_error != NULL);
+ ret = TRUE;
goto out;
}
- g_assert (connection->initialization_error == NULL);
+
+ g_assert (connection->initialization_error == NULL && !connection->is_initialized);
/* The user can pass multiple (but mutally exclusive) construct
* properties:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]