summaryrefslogtreecommitdiffstats
path: root/patches/openssl-1.0.2h/0011-Disable-the-freelist.patch
blob: ebf586673e69d8e256dcc27da81aac2a68587108 (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
34
35
36
37
38
39
40
41
42
From: Kurt Roeckx <kurt@roeckx.be>
Date: Wed, 4 May 2016 09:27:51 +0200
Subject: [PATCH] Disable the freelist

We don't define OPENSSL_NO_BUF_FREELISTS globally sinc it changes structures and
would break the ABI.  Instead we just do it in the .c files that try to do
something with it.


Imported from openssl_1.0.2h-1.debian.tar.xz

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
---
 ssl/s3_both.c | 1 +
 ssl/ssl_lib.c | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/ssl/s3_both.c b/ssl/s3_both.c
index 09d0661e81f6..3429899872b8 100644
--- a/ssl/s3_both.c
+++ b/ssl/s3_both.c
@@ -573,6 +573,7 @@ int ssl_verify_alarm_type(long type)
     return (al);
 }
 
+#define OPENSSL_NO_BUF_FREELISTS
 #ifndef OPENSSL_NO_BUF_FREELISTS
 /*-
  * On some platforms, malloc() performance is bad enough that you can't just
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index fd94325bb3a4..4bf657652041 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -162,6 +162,8 @@
 
 const char *SSL_version_str = OPENSSL_VERSION_TEXT;
 
+#define OPENSSL_NO_BUF_FREELISTS
+
 SSL3_ENC_METHOD ssl3_undef_enc_method = {
     /*
      * evil casts, but these functions are only called if there's a library