summaryrefslogtreecommitdiff
path: root/openssl-freefilesync/openssl-1.1.1-regression-fixes.patch
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-10-10 11:40:39 -0400
committerB Stack <bgstack15@gmail.com>2019-10-10 11:40:39 -0400
commitd3505e0bcb1d6015c6e70104a2b64dd347565ad1 (patch)
tree9167181d853d25a3e57645aca40155990124905f /openssl-freefilesync/openssl-1.1.1-regression-fixes.patch
parentWIP: ffs for el8 rc1 (diff)
downloadstackrpms-d3505e0bcb1d6015c6e70104a2b64dd347565ad1.tar.gz
stackrpms-d3505e0bcb1d6015c6e70104a2b64dd347565ad1.tar.bz2
stackrpms-d3505e0bcb1d6015c6e70104a2b64dd347565ad1.zip
moved ffs deps to new repo
Diffstat (limited to 'openssl-freefilesync/openssl-1.1.1-regression-fixes.patch')
-rw-r--r--openssl-freefilesync/openssl-1.1.1-regression-fixes.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/openssl-freefilesync/openssl-1.1.1-regression-fixes.patch b/openssl-freefilesync/openssl-1.1.1-regression-fixes.patch
deleted file mode 100644
index 11099a1..0000000
--- a/openssl-freefilesync/openssl-1.1.1-regression-fixes.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -up openssl-1.1.1b/crypto/conf/conf_lib.c.regression openssl-1.1.1b/crypto/conf/conf_lib.c
---- openssl-1.1.1b/crypto/conf/conf_lib.c.regression 2019-02-26 15:15:30.000000000 +0100
-+++ openssl-1.1.1b/crypto/conf/conf_lib.c 2019-05-10 14:28:57.718049429 +0200
-@@ -356,8 +356,10 @@ OPENSSL_INIT_SETTINGS *OPENSSL_INIT_new(
- {
- OPENSSL_INIT_SETTINGS *ret = malloc(sizeof(*ret));
-
-- if (ret != NULL)
-- memset(ret, 0, sizeof(*ret));
-+ if (ret == NULL)
-+ return NULL;
-+
-+ memset(ret, 0, sizeof(*ret));
- ret->flags = DEFAULT_CONF_MFLAGS;
-
- return ret;
bgstack15