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);