tls: fix ho leak on tcp connect return

Type: fix

Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I40345d635b8067dcffbbdd39d0a5b0c0934a6d54
This commit is contained in:
Florin Coras
2024-01-22 18:27:43 -08:00
committed by Dave Barach
parent 1effb29aa2
commit 3109d1c298

View File

@@ -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;