dovecot-2.2: lib-master: Added data stack frames to handling IPC...

dovecot at dovecot.org dovecot at dovecot.org
Fri May 15 13:52:36 UTC 2015


details:   http://hg.dovecot.org/dovecot-2.2/rev/5175f8e600e9
changeset: 18710:5175f8e600e9
user:      Timo Sirainen <tss at iki.fi>
date:      Fri May 15 16:46:14 2015 +0300
description:
lib-master: Added data stack frames to handling IPC input.

diffstat:

 src/lib-master/ipc-client.c |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (14 lines):

diff -r 618c8d76bc5d -r 5175f8e600e9 src/lib-master/ipc-client.c
--- a/src/lib-master/ipc-client.c	Fri May 15 16:45:14 2015 +0300
+++ b/src/lib-master/ipc-client.c	Fri May 15 16:46:14 2015 +0300
@@ -74,8 +74,9 @@
 		ipc_client_disconnect(client);
 		return;
 	}
-	while ((line = i_stream_next_line(client->input)) != NULL)
+	while ((line = i_stream_next_line(client->input)) != NULL) T_BEGIN {
 		ipc_client_input_line(client, line);
+	} T_END;
 }
 
 static int ipc_client_connect(struct ipc_client *client)


More information about the dovecot-cvs mailing list