From 7cc67225cb2e86de70abbd2d27565a6315c0eebe Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sat, 19 Mar 2016 00:04:38 -0500 Subject: [PATCH] sslproc: return after calling free_ssl_daemon() when in sandbox ipc service routine --- ircd/sslproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/sslproc.c b/ircd/sslproc.c index 9f01f229..8b8804bd 100644 --- a/ircd/sslproc.c +++ b/ircd/sslproc.c @@ -514,7 +514,7 @@ ssl_process_cmd_recv(ssl_ctl_t * ctl) ilog(L_MAIN, "%s", no_ssl_or_zlib); sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s", no_ssl_or_zlib); ssl_killall(); - break; + return; case 'V': len = ctl_buf->buflen - 1; if (len > sizeof(ctl->version) - 1)