X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Ftlspicotls%2Ftls_picotls.c;h=7d1b4fcf8e91350fb17f01f57dc3366e6aa7c8cf;hb=a85a1c352b8eec6ca9ebf2b04726432fb415ff59;hp=a0448e933385967f887fa0874fbd296128020b03;hpb=4b9246ad2008fa791405a3482914960a352237c9;p=vpp.git diff --git a/src/plugins/tlspicotls/tls_picotls.c b/src/plugins/tlspicotls/tls_picotls.c index a0448e93338..7d1b4fcf8e9 100644 --- a/src/plugins/tlspicotls/tls_picotls.c +++ b/src/plugins/tlspicotls/tls_picotls.c @@ -48,6 +48,7 @@ picotls_ctx_free (tls_ctx_t * ctx) { picotls_ctx_t *ptls_ctx = (picotls_ctx_t *) ctx; vec_free (ptls_ctx->rx_content); + ptls_free (ptls_ctx->tls); vec_free (ptls_ctx->write_content); pool_put_index (picotls_main.ctx_pool[ctx->c_thread_index], ptls_ctx->ptls_ctx_idx); @@ -200,8 +201,6 @@ picotls_transport_close (tls_ctx_t * ctx) picotls_handle_handshake_failure (ctx); return 0; } - picotls_ctx_t *ptls_ctx = (picotls_ctx_t *) ctx; - ptls_free (ptls_ctx->tls); session_transport_closing_notify (&ctx->connection); return 0; }