=?utf-8?q?=5Bfolks=5D_Bug_676023_=E2=80=94_Invalid_read_when_preparing_th?= =?utf-8?q?e_aggregator?=



commit 6b29928ae3e979b488802e60deb29a02450f30f2
Author: Philip Withnall <philip tecnocode co uk>
Date:   Tue May 15 00:21:46 2012 +0100

    Bug 676023 â Invalid read when preparing the aggregator
    
    Properly 0-terminate an array passed to tp_proxy_prepare_async().
    
    Closes: https://bugzilla.gnome.org/show_bug.cgi?id=676023

 NEWS                                          |    1 +
 backends/telepathy/lib/tpf-persona-store.vala |    3 ++-
 2 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/NEWS b/NEWS
index e9542b3..d8b69a7 100644
--- a/NEWS
+++ b/NEWS
@@ -12,6 +12,7 @@ Bugs fixed:
 â Bug 647909 â Port Folks to GSettings
 â Bug 663890 â @throws annotations missing for some functions
 â Bug 675292 â Assertion when joining IRC channel
+â Bug 676023 â Invalid read when preparing the aggregator
 
 Overview of changes from libfolks 0.6.9 to libfolks 0.7.0
 =========================================================
diff --git a/backends/telepathy/lib/tpf-persona-store.vala b/backends/telepathy/lib/tpf-persona-store.vala
index b24865c..82d12d3 100644
--- a/backends/telepathy/lib/tpf-persona-store.vala
+++ b/backends/telepathy/lib/tpf-persona-store.vala
@@ -673,7 +673,8 @@ public class Tpf.PersonaStore : Folks.PersonaStore
           TelepathyGLib.Connection.get_feature_quark_contact_list (),
           TelepathyGLib.Connection.get_feature_quark_contact_groups (),
           TelepathyGLib.Connection.get_feature_quark_contact_info (),
-          TelepathyGLib.Connection.get_feature_quark_connected ()
+          TelepathyGLib.Connection.get_feature_quark_connected (),
+          0
       });
 
       if (!this.account.connection.has_interface_by_id (



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]