From 86cafc842feb6223476568921c2d3e06c706cc31 Mon Sep 17 00:00:00 2001 From: Qualys Security Advisory Date: Sun, 21 Feb 2021 19:05:56 -0800 Subject: [PATCH 02/29] CVE-2020-28018: Use-after-free in tls-openssl.c --- src/tls-openssl.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/tls-openssl.c b/src/tls-openssl.c index e751edd9a..2a8d4cabd 100644 --- a/src/tls-openssl.c +++ b/src/tls-openssl.c @@ -2910,16 +2910,12 @@ a store reset there, so use POOL_PERM. */ if (!ct_ctx && (more || corked)) { -#ifdef EXPERIMENTAL_PIPE_CONNECT int save_pool = store_pool; store_pool = POOL_PERM; -#endif corked = string_catn(corked, buff, len); -#ifdef EXPERIMENTAL_PIPE_CONNECT store_pool = save_pool; -#endif if (more) { -- 2.30.2