summaryrefslogtreecommitdiff
path: root/gnome-unstable/epiphany
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-03-24 11:05:09 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-03-24 11:05:09 +0100
commita98f27a2a1e717afe20483ffa974d542cf80f4d9 (patch)
tree9e0b5e5e61843b4b7135423f5151e1f595d47193 /gnome-unstable/epiphany
parent9865b00e684520710b6f685aae18fe7681396b65 (diff)
parentadac5afd500d4ee3a65035e1cf5353ae236b4a61 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/ocaml-findlib/PKGBUILD gnome-unstable/clutter/PKGBUILD gnome-unstable/gcalctool/PKGBUILD gnome-unstable/gnome-screensaver/PKGBUILD gnome-unstable/gnome-screensaver/gnome-screensaver.pam gnome-unstable/pygobject/PKGBUILD kde-unstable/calligra/PKGBUILD
Diffstat (limited to 'gnome-unstable/epiphany')
-rw-r--r--gnome-unstable/epiphany/fix-infinite-loop38
1 files changed, 0 insertions, 38 deletions
diff --git a/gnome-unstable/epiphany/fix-infinite-loop b/gnome-unstable/epiphany/fix-infinite-loop
deleted file mode 100644
index 7322a0a4c..000000000
--- a/gnome-unstable/epiphany/fix-infinite-loop
+++ /dev/null
@@ -1,38 +0,0 @@
-From 087cb32d81fd8ef1cf3f493fce9e80e7217dbf04 Mon Sep 17 00:00:00 2001
-From: Xan Lopez <xan@igalia.com>
-Date: Wed, 21 Mar 2012 14:41:36 +0100
-Subject: [PATCH] profile-migrator: do not freak out if the history is empty
-
-If the old history file exists but has no actual visits we'll enter
-into an infinite loop.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=672547
----
- lib/ephy-profile-migrator.c | 10 ++++++----
- 1 files changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/lib/ephy-profile-migrator.c b/lib/ephy-profile-migrator.c
-index f7a3406..a37638c 100644
---- a/lib/ephy-profile-migrator.c
-+++ b/lib/ephy-profile-migrator.c
-@@ -594,11 +594,13 @@ migrate_history ()
- g_input_stream_close (G_INPUT_STREAM (input), NULL, NULL);
- g_object_unref (input);
-
-- ephy_history_service_add_visits (history_service, parse_data.visits, NULL, (EphyHistoryJobCallback)visit_cb, NULL);
-- ephy_history_page_visit_list_free (parse_data.visits);
-+ if (parse_data.visits) {
-+ ephy_history_service_add_visits (history_service, parse_data.visits, NULL, (EphyHistoryJobCallback)visit_cb, NULL);
-+ ephy_history_page_visit_list_free (parse_data.visits);
-
-- while (!all_done)
-- g_main_context_iteration (NULL, FALSE);
-+ while (!all_done)
-+ g_main_context_iteration (NULL, FALSE);
-+ }
-
- g_object_unref (history_service);
- }
---
-1.7.7.6
-