diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-topic-action.c | 7 |
2 files changed, 13 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2006-12-17 Christian Persch <chpe@cvs.gnome.org> + + * src/bookmarks/ephy-topic-action.c: (button_deactivate_cb): + + Fix a signal leak. Bug #363837, patch by John Millikin. + 2006-12-17 Eric Butler <eric@extremeboredom.net> * src/ephy-embed.h: diff --git a/src/bookmarks/ephy-topic-action.c b/src/bookmarks/ephy-topic-action.c index a09fd35ee..9bed16852 100644 --- a/src/bookmarks/ephy-topic-action.c +++ b/src/bookmarks/ephy-topic-action.c @@ -296,6 +296,13 @@ button_deactivate_cb (GtkMenuShell *ms, { gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), FALSE); gtk_button_released (GTK_BUTTON (button)); + + /* + Currently, GObject leaks connection IDs created with + g_signal_connect_object () + See glib bug #118536 + */ + g_signal_handlers_disconnect_by_func(ms, button_deactivate_cb, button); } static void |