mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
Fix another leak
svn path=/trunk/; revision=17050
This commit is contained in:
parent
4e332f0da6
commit
5db7fbc8dc
@ -1,5 +1,8 @@
|
||||
2007-01-03 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* modules/printbackends/cups/gtkprintbackendcups.c
|
||||
(available_choices): Don't leak conflicts.
|
||||
|
||||
* gtk/gtkprintoperation.c (gtk_print_operation_finalize):
|
||||
Don't leak the status string.
|
||||
|
||||
|
@ -1786,12 +1786,13 @@ available_choices (ppd_file_t *ppd,
|
||||
all_default = FALSE;
|
||||
}
|
||||
|
||||
if (all_default && !keep_if_only_one_option)
|
||||
return 0;
|
||||
|
||||
if (num_conflicts == option->num_choices)
|
||||
return 0;
|
||||
if ((all_default && !keep_if_only_one_option) ||
|
||||
(num_conflicts == option->num_choices))
|
||||
{
|
||||
g_free (conflicts);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Some ppds don't have a "use printer default" option for
|
||||
* InputSlot. This means you always have to select a particular slot,
|
||||
@ -1830,7 +1831,6 @@ available_choices (ppd_file_t *ppd,
|
||||
|
||||
if (available)
|
||||
{
|
||||
|
||||
*available = g_new (ppd_choice_t *, option->num_choices - num_conflicts + add_auto);
|
||||
|
||||
i = 0;
|
||||
@ -1843,6 +1843,8 @@ available_choices (ppd_file_t *ppd,
|
||||
if (add_auto)
|
||||
(*available)[i++] = NULL;
|
||||
}
|
||||
|
||||
g_free (conflicts);
|
||||
|
||||
return option->num_choices - num_conflicts + add_auto;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user