From 4e332f0da6e80dc359772f29289c8752c0015cab Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 4 Jan 2007 04:49:31 +0000 Subject: [PATCH] Fix another leak svn path=/trunk/; revision=17048 --- ChangeLog | 5 +++++ gtk/gtkprintoperation.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index edf3d5c4ff..3c084b7fa1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-01-03 Matthias Clasen + + * gtk/gtkprintoperation.c (gtk_print_operation_finalize): + Don't leak the status string. + 2007-01-03 Matthias Clasen * gtk/gtkfilechooserdefault.c (update_chooser_entry): diff --git a/gtk/gtkprintoperation.c b/gtk/gtkprintoperation.c index 0391b8ae23..8b61514238 100644 --- a/gtk/gtkprintoperation.c +++ b/gtk/gtkprintoperation.c @@ -123,6 +123,7 @@ gtk_print_operation_finalize (GObject *object) g_free (priv->export_filename); g_free (priv->job_name); g_free (priv->custom_tab_label); + g_free (priv->status_string); if (priv->print_pages_idle_id > 0) g_source_remove (priv->print_pages_idle_id);