mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
Fix a leak by not increasing the refcount of the GtkRecentInfo object when
2007-04-18 Emmanuele Bassi <ebassi@gnome.org> * gtk/gtkrecentmanager.c (gtk_recent_manager_lookup_item): Fix a leak by not increasing the refcount of the GtkRecentInfo object when returning it (thanks to Matthias Clasen). svn path=/trunk/; revision=17606
This commit is contained in:
parent
fb8638d0ac
commit
b235fff0bf
@ -1,3 +1,9 @@
|
||||
2007-04-18 Emmanuele Bassi <ebassi@gnome.org>
|
||||
|
||||
* gtk/gtkrecentmanager.c (gtk_recent_manager_lookup_item): Fix
|
||||
a leak by not increasing the refcount of the GtkRecentInfo
|
||||
object when returning it (thanks to Matthias Clasen).
|
||||
|
||||
2007-04-16 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gtk/gtkprintoperation.c (gtk_print_operation_run):
|
||||
|
@ -1231,7 +1231,7 @@ gtk_recent_manager_lookup_item (GtkRecentManager *manager,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return gtk_recent_info_ref (info);
|
||||
return info;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user