From 6e49d94cfe7d9efc7ea6b5c6de1669eca3780600 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 11 Jul 2019 14:43:13 +0300 Subject: [PATCH] dict: Exit early to work around various errors and crashes at shutdown This is just a kludge until the dict process cleanup can be done cleanly. --- src/dict/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dict/main.c b/src/dict/main.c index 6a9f3df534..722ed025f3 100644 --- a/src/dict/main.c +++ b/src/dict/main.c @@ -116,6 +116,9 @@ static void main_init(void) static void main_deinit(void) { + /* FIXME: we're not able to do a clean deinit currently without + larger changes. */ + exit(0); timeout_remove(&to_proctitle); dict_connections_destroy_all(); -- 2.47.3