From cd7fa3dcfcce4ec321c6624813c994eba4b79a09 Mon Sep 17 00:00:00 2001 From: William Dauchy Date: Wed, 8 Jan 2020 15:16:53 +0100 Subject: [PATCH] CLEANUP: mux-h2: remove unused goto "out_free_h2s" Since commit fa8aa867b915 ("MEDIUM: connections: Change struct wait_list to wait_event.") we no longer use this section. this should fix github issue #437 Signed-off-by: William Dauchy --- src/mux_h2.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/mux_h2.c b/src/mux_h2.c index be9dae928a..6ec8d6c025 100644 --- a/src/mux_h2.c +++ b/src/mux_h2.c @@ -1347,9 +1347,6 @@ static struct h2s *h2s_new(struct h2c *h2c, int id) TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s); return h2s; - - out_free_h2s: - pool_free(pool_head_h2s, h2s); out: TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn); return NULL; -- 2.47.3