Fix bug 344518

This commit is contained in:
Matthias Clasen
2006-06-11 02:59:51 +00:00
parent 04e14ecf07
commit a803836657
3 changed files with 11 additions and 1 deletions

View File

@ -693,7 +693,9 @@ page_setup_data_free (gpointer data)
{
PageSetupResponseData *rdata = data;
g_object_unref (rdata->page_setup);
if (rdata->page_setup)
g_object_unref (rdata->page_setup);
g_free (rdata);
}