From 669a1c8df92ea457ccc3ebb2fb7cce81a4e80a9a Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Mon, 2 Mar 2020 16:45:22 +0100 Subject: [PATCH] Add a missing call to close_client_and_server_ssl_connections() Not calling it caused memory leaks. Sponsored by: Robert Klemme --- jcc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/jcc.c b/jcc.c index f142996e..75be2d26 100644 --- a/jcc.c +++ b/jcc.c @@ -3925,6 +3925,7 @@ static void chat(struct client_state *csp) { send_crunch_response(csp, rsp); } + close_client_and_server_ssl_connections(csp); return; } } -- 2.39.2