summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-03-24 16:48:24 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-03-24 16:48:24 +0000
commitbf95ef8455ef3d2c50af80842275e46379b3b829 (patch)
tree9ad76c4799ce2af9d7d4e2abcef40544139ba394
parente810fb398aa740818fddfb8c1f4c2bc89a489641 (diff)
parent3915d866af0b7f7f15cce52eb90dddc156761f09 (diff)
Merge branch 'telepathy-glib-0.8' into telepathy-glib-0.10
Conflicts: NEWS
-rw-r--r--NEWS38
-rw-r--r--telepathy-glib/connection.c2
2 files changed, 38 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 4d8fbb3e5..1ab7c16c9 100644
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,44 @@ telepathy-glib 0.10.1 (UNRELEASED)
...
+Fixes:
+
+* Don't make an idle call to put received messages in the TpMessageMixin
+ queue, potentially avoiding a reference leak (Vivek)
+
+* tp_contacts_mixin_set_contact_attribute now takes a const gchar *
+ instead of a gchar * (mikhailz)
+
+* Escape the doc-comments better in generated service interfaces (smcv)
+
+* Fix some typos and broken cross-references in the documentation, and
+ improve the TpAccount documentation (smcv)
+
+* Chain up to GObject's dispose method when destroying a
+ TpBaseConnectionManager (smcv)
+
+* Remove a misleading debug message from tp_list_connection_names (wjt)
+
+* fd.o #23853: if a connection manager is discovered not to be running while
+ TpConnectionManager has a ListProtocols call in-flight, then a new instance
+ of the CM starts up and replies to that call, don't crash with an assertion
+ failure (smcv)
+
+* If a connection manager returns error from GetParameters(), don't dereference
+ a NULL pointer and segfault (smcv)
+
+* When asked to activate or introspect a connection manager, don't do anything
+ until we have at least worked out whether it was initially running, in order
+ to provide the documented behaviour (smcv)
+
+* When getting parameter details from a running connection manager, consider
+ parameters called "password" or ending with "-password" to be secret even
+ if they lack the SECRET flag, as was already done when reading .manager
+ files (smcv)
+
+* Corrected the error message given when a write-only D-Bus property
+ is read (Pekka Pessi)
+
telepathy-glib 0.10.0 (2010-01-21)
==================================
diff --git a/telepathy-glib/connection.c b/telepathy-glib/connection.c
index 7ec5a0e2a..4ff4ab855 100644
--- a/telepathy-glib/connection.c
+++ b/telepathy-glib/connection.c
@@ -1171,8 +1171,6 @@ tp_list_connection_names_helper (TpDBusDaemon *bus_daemon,
g_ptr_array_add (protocols, proto);
continue;
}
-
- DEBUG ("invalid name: %s", *iter);
}
g_ptr_array_add (bus_names, NULL);