summaryrefslogtreecommitdiff
path: root/telepathy-glib/observe-channels-context.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-05-04 15:26:45 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-05-05 14:39:10 +0200
commit12c77955be313d4f285b488313f2291075ee1505 (patch)
treebd1c9ea97192d5062b25a809b00d433a59062efd /telepathy-glib/observe-channels-context.c
parentde8447ea9cf1fd36f9a8781522a2ef3524366d9a (diff)
downloadtelepathy-glib-12c77955be313d4f285b488313f2291075ee1505.tar.gz
Don't fail preparing the context if the connection or account is not prepared
Diffstat (limited to 'telepathy-glib/observe-channels-context.c')
-rw-r--r--telepathy-glib/observe-channels-context.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/telepathy-glib/observe-channels-context.c b/telepathy-glib/observe-channels-context.c
index e870d2732..82ed58879 100644
--- a/telepathy-glib/observe-channels-context.c
+++ b/telepathy-glib/observe-channels-context.c
@@ -529,19 +529,6 @@ context_check_prepare (TpObserveChannelsContext *self)
}
static void
-failed_to_prepare (TpObserveChannelsContext *self,
- const GError *error)
-{
- g_return_if_fail (self->priv->result != NULL);
-
- g_simple_async_result_set_from_error (self->priv->result, error);
- g_simple_async_result_complete (self->priv->result);
-
- g_object_unref (self->priv->result);
- self->priv->result = NULL;
-}
-
-static void
account_prepare_cb (GObject *source,
GAsyncResult *result,
gpointer user_data)
@@ -555,9 +542,7 @@ account_prepare_cb (GObject *source,
if (!tp_proxy_prepare_finish (source, result, &error))
{
DEBUG ("Failed to prepare account: %s", error->message);
- failed_to_prepare (self, error);
g_error_free (error);
- goto out;
}
self->priv->num_pending--;
@@ -581,9 +566,7 @@ conn_prepare_cb (GObject *source,
if (!tp_proxy_prepare_finish (source, result, &error))
{
DEBUG ("Failed to prepare connection: %s", error->message);
- failed_to_prepare (self, error);
g_error_free (error);
- goto out;
}
self->priv->num_pending--;