From: Timo Sirainen Date: Tue, 10 Feb 2009 03:44:42 +0000 (-0500) Subject: master: Another deinit crashfix X-Git-Tag: 1.2.beta1~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe3d111b7f7d5849d172fa4a56398a7229b55e2c;p=thirdparty%2Fdovecot%2Fcore.git master: Another deinit crashfix --HG-- branch : HEAD --- diff --git a/src/master/mail-process.c b/src/master/mail-process.c index 875df684b5..e58944706e 100644 --- a/src/master/mail-process.c +++ b/src/master/mail-process.c @@ -950,8 +950,6 @@ void mail_processes_init(void) void mail_processes_deinit(void) { - /* don't free() the mail process groups. child_process structs are - still referenced in child-processes and we may need to look them up. - This deinit code needs a redesign.. */ - hash_table_destroy(&mail_process_groups); + /* we may still end up in mail_process_destroyed(), so don't free + anything. This deinit code needs a redesign.. */ }