From a7704777cee14bb3d0cb3a288ee44a620fca8a59 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 16 Mar 2006 10:08:08 +0000 Subject: [PATCH] An extra safeguard for msg2sndr_flush(). --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io.c b/io.c index ea3c81bd..9ddf1253 100644 --- a/io.c +++ b/io.c @@ -1153,7 +1153,7 @@ static void msg2sndr_flush(void) if (defer_forwarding_messages) return; - while (msg2sndr.head) { + while (msg2sndr.head && io_multiplexing_out) { struct msg_list_item *m = msg2sndr.head; if (!(msg2sndr.head = m->next)) msg2sndr.tail = NULL; -- 2.34.1