=?utf-8?q?=5Bfolks=5D_Bug_666310_=E2=80=94_Crash_in_Tracker_backend_by_un?= =?utf-8?q?setting_an_entry_in_a_read-only=E2=80=A6?=



commit 675f42c0b877c1a25bff05beb91e552fd793a6d9
Author: Philip Withnall <philip tecnocode co uk>
Date:   Thu Dec 15 18:33:26 2011 +0000

    Bug 666310 â Crash in Tracker backend by unsetting an entry in a read-onlyâ
    
    Closes: bgo#666310

 NEWS                             |    1 +
 backends/tracker/tr-backend.vala |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/NEWS b/NEWS
index 2221c12..bc17cc2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
 Overview of changes from libfolks 0.6.6 to libfolks 0.6.7
 =============================================================
 Bugs fixed:
+* Bug 666310 â Crash in Tracker backend by unsetting an entry in a read-only map
 
 Overview of changes from libfolks 0.6.5 to libfolks 0.6.6
 =============================================================
diff --git a/backends/tracker/tr-backend.vala b/backends/tracker/tr-backend.vala
index 44bca1a..996e2a6 100644
--- a/backends/tracker/tr-backend.vala
+++ b/backends/tracker/tr-backend.vala
@@ -172,6 +172,6 @@ public class Folks.Backends.Tr.Backend : Folks.Backend
     {
       store.removed.disconnect (this._store_removed_cb);
       this.persona_store_removed (store);
-      this.persona_stores.unset (store.id);
+      this._persona_stores.unset (store.id);
     }
 }



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