mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 01:40:10 +00:00
container: don't leak the focus_child ref count
gtk_conatiner_set_focus_child() takes a ref. Release the ref in _destroy(). Fixes #414712.
This commit is contained in:
parent
a3268e29a1
commit
d945a3cef4
@ -1057,6 +1057,12 @@ gtk_container_destroy (GtkObject *object)
|
||||
if (GTK_CONTAINER_RESIZE_PENDING (container))
|
||||
_gtk_container_dequeue_resize_handler (container);
|
||||
|
||||
if (container->focus_child)
|
||||
{
|
||||
g_object_unref (container->focus_child);
|
||||
container->focus_child = NULL;
|
||||
}
|
||||
|
||||
/* do this before walking child widgets, to avoid
|
||||
* removing children from focus chain one by one.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user