From 1bb2648cde916ac27d3dd75d7b64a4ddc89787b7 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 10 Feb 2013 01:12:52 -0800 Subject: Sun Feb 10 01:12:35 PST 2013 --- community/gwibber/lp_959068.patch | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 community/gwibber/lp_959068.patch (limited to 'community/gwibber') diff --git a/community/gwibber/lp_959068.patch b/community/gwibber/lp_959068.patch deleted file mode 100644 index 66b288ba7..000000000 --- a/community/gwibber/lp_959068.patch +++ /dev/null @@ -1,27 +0,0 @@ -=== modified file 'libgwibber/streams.vala' ---- old/libgwibber/streams.vala 2012-03-19 13:35:30 +0000 -+++ new/libgwibber/streams.vala 2012-04-04 20:53:49 +0000 -@@ -213,13 +213,21 @@ - model = create_model (); - } - model.row_removed.connect((_m, _i) => { -+ var to_remove = new GLib.List (); - foreach (var v in seen.entries) - { - if (v.value == _i) - { -- seen.unset(v.key); -+ /* defer calling unset until after we are done iterating -+ * the HashMap, it will resize making the iterator invalid -+ * This is fixed in the 0.7 series of libgee -+ * https://bugzilla.gnome.org/show_bug.cgi?id=671327 -+ */ -+ to_remove.prepend (v.key); - } - } -+ foreach (var v in to_remove) -+ seen.unset(v); - }); - Idle.add(() => { - refresh_model_async.begin (); - -- cgit v1.2.3-54-g00ecf