diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/ephy-favicon-cache.c | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,12 @@ 2003-05-21 Xan Lopez <xan@masilla.org> + * embed/ephy-favicon-cache.c: (remove_obsolete_icons), + (kill_download): + + s/g_object_unref/ephy_node_unref/ on EphyNodes. + +2003-05-21 Xan Lopez <xan@masilla.org> + * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb): * src/session.c: (parse_embed): diff --git a/embed/ephy-favicon-cache.c b/embed/ephy-favicon-cache.c index 5488a9451..1391c5f5c 100644 --- a/embed/ephy-favicon-cache.c +++ b/embed/ephy-favicon-cache.c @@ -221,7 +221,7 @@ remove_obsolete_icons (EphyFaviconCache *eb) path = g_build_filename (eb->priv->directory, filename, NULL); gnome_vfs_unlink (path); - g_object_unref (kid); + ephy_node_unref (kid); } } } @@ -324,7 +324,7 @@ kill_download (gpointer key, icon = g_hash_table_lookup (cache->priv->icons_hash, (char *)key); g_static_rw_lock_reader_unlock (cache->priv->icons_hash_lock); - g_object_unref (icon); + ephy_node_unref (icon); return TRUE; } |