Bug 666310 — Crash in Tracker backend by unsetting an entry in a read-only…
authorPhilip Withnall <philip@tecnocode.co.uk>
Thu, 15 Dec 2011 18:33:26 +0000 (18:33 +0000)
committerPhilip Withnall <philip@tecnocode.co.uk>
Thu, 15 Dec 2011 18:33:26 +0000 (18:33 +0000)
Closes: bgo#666310

NEWS
backends/tracker/tr-backend.vala

diff --git a/NEWS b/NEWS
index 2221c12..bc17cc2 100644 (file)
--- 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
 =============================================================
index 44bca1a..996e2a6 100644 (file)
@@ -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);
     }
 }