aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/bookmarks/ephy-bookmarks.c5
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b5307a5f1..1e50a34ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-10-15 Jean-François Rameau <jframeau@cvs.gnome.org>
+
+ * src/bookmarks/ephy-bookmarks.c: (update_has_smart_address):
+
+ Fix unprotected call to ephy_node_remove_child. Bug #362063.
+
2006-10-15 Wouter Bolsterlee <wbolster@gnome.org>
* embed/mozilla/mozilla-embed-single.cpp:
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c
index 8ba6bd217..89341ae70 100644
--- a/src/bookmarks/ephy-bookmarks.c
+++ b/src/bookmarks/ephy-bookmarks.c
@@ -1272,7 +1272,10 @@ update_has_smart_address (EphyBookmarks *bookmarks, EphyNode *bmk, const char *a
*/
if (smart && with_options)
{
- ephy_node_remove_child (smart_bmks, bmk);
+ if (ephy_node_has_child (smart_bmks, bmk))
+ {
+ ephy_node_remove_child (smart_bmks, bmk);
+ }
ephy_node_add_child (smart_bmks, bmk);
}
else if (smart)