diff options
Diffstat (limited to 'camel/camel-object.c')
-rw-r--r-- | camel/camel-object.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/camel/camel-object.c b/camel/camel-object.c index 7d6f38a55b..703503b15b 100644 --- a/camel/camel-object.c +++ b/camel/camel-object.c @@ -337,10 +337,7 @@ obj_finalize (CamelObject * obj) obj->s.magic = CAMEL_OBJECT_FINALIZED_VALUE; if (obj->event_to_hooklist) { -#if 0 - g_hash_table_foreach (obj->event_to_hooklist, (GHFunc) g_free, - NULL); -#endif + g_hash_table_foreach (obj->event_to_hooklist, (GHFunc) g_free, NULL); g_hash_table_destroy (obj->event_to_hooklist); obj->event_to_hooklist = NULL; } |