From: Florin Coras Date: Tue, 23 Jan 2024 02:27:43 +0000 (-0800) Subject: tls: fix ho leak on tcp connect return X-Git-Tag: v24.06-rc0~2 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F35%2F40235%2F5;p=vpp.git tls: fix ho leak on tcp connect return Type: fix Signed-off-by: Florin Coras Change-Id: I40345d635b8067dcffbbdd39d0a5b0c0934a6d54 --- diff --git a/src/vnet/tls/tls.c b/src/vnet/tls/tls.c index 7c84f15e9e0..a27d731aca0 100644 --- a/src/vnet/tls/tls.c +++ b/src/vnet/tls/tls.c @@ -824,7 +824,10 @@ tls_connect (transport_endpoint_cfg_t * tep) cargs->api_context = ctx_index; cargs->sep_ext.ns_index = app->ns_index; if ((rv = vnet_connect (cargs))) - return rv; + { + tls_ctx_half_open_free (ctx_index); + return rv; + } /* Track half-open tcp session in case we need to clean it up */ ctx->tls_session_handle = cargs->sh;