aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/openssl/patches/510-e_devcrypto-ignore-error-when-closing-session.patch
diff options
context:
space:
mode:
authorEneas U de Queiroz <cotequeiroz@gmail.com>2023-02-07 18:14:27 -0300
committerChristian Marangi <ansuelsmth@gmail.com>2023-02-20 11:24:17 +0100
commit7e7e76afca7877b97bc049d8f5a83a840a20a2af (patch)
tree8bb6e0ecd3642d724da768557468653b65ff232e /package/libs/openssl/patches/510-e_devcrypto-ignore-error-when-closing-session.patch
parenteac6fe6f742c7da980799b5583819183a9f33c01 (diff)
downloadupstream-7e7e76afca7877b97bc049d8f5a83a840a20a2af.tar.gz
upstream-7e7e76afca7877b97bc049d8f5a83a840a20a2af.tar.bz2
upstream-7e7e76afca7877b97bc049d8f5a83a840a20a2af.zip
openssl: bump to 3.0.8
This is a major update to the current LTS version, supported until 2026-09-07. Changelog: https://github.com/openssl/openssl/blob/openssl-3.0.8/CHANGES.md Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
Diffstat (limited to 'package/libs/openssl/patches/510-e_devcrypto-ignore-error-when-closing-session.patch')
-rw-r--r--package/libs/openssl/patches/510-e_devcrypto-ignore-error-when-closing-session.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/package/libs/openssl/patches/510-e_devcrypto-ignore-error-when-closing-session.patch b/package/libs/openssl/patches/510-e_devcrypto-ignore-error-when-closing-session.patch
deleted file mode 100644
index 87792cf9d0..0000000000
--- a/package/libs/openssl/patches/510-e_devcrypto-ignore-error-when-closing-session.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
-From: Eneas U de Queiroz <cote2004-github@yahoo.com>
-Date: Mon, 11 Mar 2019 10:15:14 -0300
-Subject: e_devcrypto: ignore error when closing session
-
-In cipher_init, ignore an eventual error when closing the previous
-session. It may have been closed by another process after a fork.
-
-Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
-
---- a/engines/e_devcrypto.c
-+++ b/engines/e_devcrypto.c
-@@ -195,9 +195,8 @@ static int cipher_init(EVP_CIPHER_CTX *c
- get_cipher_data(EVP_CIPHER_CTX_nid(ctx));
-
- /* cleanup a previous session */
-- if (cipher_ctx->sess.ses != 0 &&
-- clean_devcrypto_session(&cipher_ctx->sess) == 0)
-- return 0;
-+ if (cipher_ctx->sess.ses != 0)
-+ clean_devcrypto_session(&cipher_ctx->sess);
-
- cipher_ctx->sess.cipher = cipher_d->devcryptoid;
- cipher_ctx->sess.keylen = cipher_d->keylen;