From 07955827bba3ed6a6426ca4f2cb32efef2dc04c0 Mon Sep 17 00:00:00 2001 From: John Brooks Date: Thu, 12 Dec 2013 15:46:27 -0700 Subject: Prevent assert for offline accounts with power saving Reviewed-by: Simon McVittie Bug: https://bugs.freedesktop.org/show_bug.cgi?id=72652 --- src/mcd-connection.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mcd-connection.c b/src/mcd-connection.c index 1d71da4e..e04ff78f 100644 --- a/src/mcd-connection.c +++ b/src/mcd-connection.c @@ -1626,10 +1626,10 @@ on_inactivity_changed (McdSlacker *slacker, McdConnection *self) { McdConnectionPrivate *priv = self->priv; - DEBUG ("%sactive, %s have power saving iface.", inactive ? "in" : "", - priv->has_power_saving_if ? "has" : "doesn't"); + DEBUG ("%sactive, connection %s have power saving iface.", inactive ? "in" : "", + priv->has_power_saving_if ? "does" : "doesn't"); - if (priv->has_power_saving_if) + if (priv->tp_conn != NULL && priv->has_power_saving_if) tp_cli_connection_interface_power_saving_call_set_power_saving (priv->tp_conn, -1, inactive, NULL, NULL, NULL, NULL); } -- cgit v1.2.1