summarylogtreecommitdiffstats
path: root/0001_Fix_OpenSSL_crash_bug.patch
diff options
context:
space:
mode:
authorSven Hebrok2023-06-19 12:58:57 +0200
committerSven Hebrok2023-06-19 12:58:57 +0200
commitd86bdd564d29f2337f7f814e3474e431cc7a090b (patch)
tree65c9ad28ad8693f58d9bea70c41fbe5b3915a8ba /0001_Fix_OpenSSL_crash_bug.patch
parent4caa3516dee09887c838d6cd30c544b513c43401 (diff)
downloadaur-d86bdd564d29f2337f7f814e3474e431cc7a090b.tar.gz
Update to 2.4.5
Also include a way to verify the package builds on a clean system
Diffstat (limited to '0001_Fix_OpenSSL_crash_bug.patch')
-rw-r--r--0001_Fix_OpenSSL_crash_bug.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/0001_Fix_OpenSSL_crash_bug.patch b/0001_Fix_OpenSSL_crash_bug.patch
deleted file mode 100644
index 68c9f711ac7a..000000000000
--- a/0001_Fix_OpenSSL_crash_bug.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-From c0c403744b1bf4a9790a8fcaabcd60970cbefe06 Mon Sep 17 00:00:00 2001
-From: Michael R Sweet <michael.r.sweet@gmail.com>
-Date: Tue, 7 Jun 2022 13:45:29 -0400
-Subject: [PATCH] Fix OpenSSL crash bug - "tls" pointer wasn't cleared after
- freeing it (Issue #409)
-
-diff --git a/cups/tls-openssl.c b/cups/tls-openssl.c
-index c3e57742e..6db9f8a9c 100644
---- a/cups/tls-openssl.c
-+++ b/cups/tls-openssl.c
-@@ -1152,6 +1152,8 @@ _httpTLSStop(http_t *http) // I - Connection to server
- SSL_shutdown(http->tls);
- SSL_CTX_free(context);
- SSL_free(http->tls);
-+
-+ http->tls = NULL;
- }