summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2010-06-13 00:06:04 +0300
committerXan Lopez <xan@gnome.org>2010-06-13 00:06:04 +0300
commit4634aca00a9188e83ff6f53fb43da1e137b84bd4 (patch)
treec62f89414d4b1a87617699fc565704dddde70eee
parent864d20152054e684a5cbb0b2dbde8f6bdf63f698 (diff)
downloadepiphany-4634aca00a9188e83ff6f53fb43da1e137b84bd4.tar.gz
pdm-dialog: plug leak
-rw-r--r--src/pdm-dialog.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index da372740d..fcd755e7b 100644
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -354,13 +354,15 @@ clear_all_dialog_checkbutton_toggled_cb (GtkToggleButton *toggle,
static GtkWidget*
_gtk_message_dialog_get_content_area (GtkMessageDialog *dialog)
{
- GtkWidget *image, *parent;
+ GtkWidget *image, *parent, *box;
GList *children;
image = gtk_message_dialog_get_image (dialog);
parent = gtk_widget_get_parent (image);
children = gtk_container_get_children (GTK_CONTAINER (parent));
- return GTK_WIDGET (children->next->data);
+ box = GTK_WIDGET (children->next->data);
+ g_list_free (children);
+ return box;
}
void