aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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