From 85da033343489a78d08cfcc9138f040960bfe4f6 Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Sun, 24 Mar 2013 11:07:14 +0100 Subject: ephy-embed-shell: use g_list_free_full --- embed/ephy-embed-shell.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c index ab7341906..13e8fbef3 100644 --- a/embed/ephy-embed-shell.c +++ b/embed/ephy-embed-shell.c @@ -119,8 +119,7 @@ ephy_embed_shell_finalize (GObject *object) if (priv->downloads != NULL) { LOG ("Destroying downloads list"); - g_list_foreach (priv->downloads, (GFunc)g_object_unref, NULL); - g_list_free (priv->downloads); + g_list_free_full (priv->downloads, (GDestroyNotify)g_object_unref); priv->downloads = NULL; } -- cgit v1.2.3