diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2007-01-04 04:49:31 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-01-04 04:49:31 +0000 |
commit | 4e332f0da6e80dc359772f29289c8752c0015cab (patch) | |
tree | 8a2dcd7fffc1cda1c846f5d52bed596833ecc641 /gtk/gtkprintoperation.c | |
parent | 846197a5bdd6b9beb338c369193ed49ba39a386a (diff) | |
download | gtk+-4e332f0da6e80dc359772f29289c8752c0015cab.tar.gz |
Fix another leak
svn path=/trunk/; revision=17048
Diffstat (limited to 'gtk/gtkprintoperation.c')
-rw-r--r-- | gtk/gtkprintoperation.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); |