Fix another leak

svn path=/trunk/; revision=17048
This commit is contained in:
Matthias Clasen 2007-01-04 04:49:31 +00:00
parent 846197a5bd
commit 4e332f0da6
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-01-03 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkprintoperation.c (gtk_print_operation_finalize):
Don't leak the status string.
2007-01-03 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (update_chooser_entry):

View File

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