From a75b727efee43acf8e4975b264a85ea743529526 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Thu, 27 Nov 2008 12:59:25 +0000 Subject: ** Fix for bug #332729 2008-11-27 Milan Crha ** Fix for bug #332729 * e-config.c: (ep_finalise): Disconnect handlers on the widget before freeing the structure it is using. svn path=/trunk/; revision=36816 --- e-util/ChangeLog | 7 +++++++ e-util/e-config.c | 4 ++++ 2 files changed, 11 insertions(+) (limited to 'e-util') diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 461861d7c3..d9701d49b3 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,10 @@ +2008-11-27 Milan Crha + + ** Fix for bug #332729 + + * e-config.c: (ep_finalise): Disconnect handlers on the widget before + freeing the structure it is using. + 2008-11-12 Milan Crha ** Fix for bug #559810 diff --git a/e-util/e-config.c b/e-util/e-config.c index d320bcd7af..03a553feb2 100644 --- a/e-util/e-config.c +++ b/e-util/e-config.c @@ -122,6 +122,10 @@ ep_finalise(GObject *o) } while ( (wn = (struct _widget_node *)e_dlist_remhead(&p->widgets)) ) { + /* disconnect the gtk_widget_destroyed function from the widget */ + if (wn->widget) + g_signal_handlers_disconnect_matched (wn->widget, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, &wn->widget); + g_free(wn); } -- cgit