mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
gsignal: Plug g_signal_connect_object leak
commit 916297be79
added a hash table
to provide constant time lookups of signal handlers.
Unfortunately, that commit neglected to remove handlers from
g_signal_connect_object calls from the hash table that are
disconnected implicitly when the associated object goes away.
This commit addresses that bug by changing the closure invalidate
handler associated with the signal connection to properly remove the
handler from the hash table.
This commit is contained in:
parent
2954754cb3
commit
d691c2ebd2
@ -3916,6 +3916,7 @@ invalid_closure_notify (gpointer instance,
|
||||
g_assert (handler != NULL);
|
||||
g_assert (handler->closure == closure);
|
||||
|
||||
g_hash_table_remove (g_handlers, handler);
|
||||
handler->sequential_number = 0;
|
||||
handler->block_count = 1;
|
||||
handler_unref_R (signal_id, instance, handler);
|
||||
|
Loading…
Reference in New Issue
Block a user