commit 3077e3b2242cf673b439d746bc7dca4345b05a32
parent deb6dfa2f7b8d350494069256557b6e68c61847c
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date: Mon, 8 Dec 2025 17:49:12 +0100
Fixed double remove from timeouts lists
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/mhd2/events_process.c b/src/mhd2/events_process.c
@@ -574,6 +574,7 @@ mhd_daemon_close_all_conns (struct MHD_Daemon *d)
#ifdef MHD_SUPPORT_HTTP2
if (mhd_C_IS_HTTP2 (c))
mhd_h2_conn_deinit (c);
+ else
#endif /* MHD_SUPPORT_HTTP2 */
mhd_conn_start_closing_d_shutdown (c);
}