blob: 3a488b30b98a21385d6f7bdfea831382743fcba4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
From 86cafc842feb6223476568921c2d3e06c706cc31 Mon Sep 17 00:00:00 2001
From: Qualys Security Advisory <qsa@qualys.com>
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
|