Coverity Scan: Analysis completed for openssl/openssl

2022-02-15 Thread scan-admin


Your request for analysis of openssl/openssl has been completed 
successfully.
The results are available at 
https://u15810271.ct.sendgrid.net/ls/click?upn=HRESupC-2F2Czv4BOaCWWCy7my0P0qcxCbhZ31OYv50yoN-2BQSVjTtaSz8wS4wOr7HlekBtV1P4YRtWclMVkCdvAA-3D-3DdweO_MulOTlHne1IxTRELXXnGni8d68xSVF-2BUCe3a7Ux-2BjeHDhduEcjV2YhzCLnzvM0yYxabg-2FdX2dXYgikRSjFxoK16skgesF3GF0e4kodsPJ3esfYudnX4iXYAra0DgKl2K1mJw38sK7OIyhzoNiYO8-2BpLVOVvvFNGDh-2BuhRhGMpvszRwjldXyO-2FdpvhQVlh-2FKqTjxgd5BjgmoP-2Ffk0WDw2JlraC3QOlcAX1S3sz4V2NgY-3D

Build ID: 437746

Analysis Summary:
   New defects found: 0
   Defects eliminated: 0



[openssl] openssl-3.0 update

2022-02-15 Thread Dr . Paul Dale
The branch openssl-3.0 has been updated
   via  59de5a5e8603fb5e2e7b0aa78224152700ad905a (commit)
  from  3948abaf4458aac66bf47546874d0fb5a73a78a0 (commit)


- Log -
commit 59de5a5e8603fb5e2e7b0aa78224152700ad905a
Author: Todd Short 
Date:   Wed Feb 9 15:59:37 2022 -0500

Force macOS 10.15 or later to be 64-bit

macOS Catalina (10.15) no longer supports 32-bit applications.
Do not wait 5 seconds to give the user the option of using KERNEL_BITS=32
Do not accept the KERNEL_BITS=32 option

Reviewed-by: Tomas Mraz 
Reviewed-by: Paul Dale 
(Merged from https://github.com/openssl/openssl/pull/17675)

(cherry picked from commit b926548b362531e8a64e7482c081611fab7183a8)

---

Summary of changes:
 util/perl/OpenSSL/config.pm | 8 
 1 file changed, 8 insertions(+)

diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm
index 81e9a03b48..17786defad 100755
--- a/util/perl/OpenSSL/config.pm
+++ b/util/perl/OpenSSL/config.pm
@@ -485,6 +485,14 @@ EOF
   [ 'x86_64-apple-darwin.*',
 sub {
 my $KERNEL_BITS = $ENV{KERNEL_BITS} // '';
+# macOS >= 10.15 is 64-bit only
+my $SW_VERS = `sw_vers -productVersion 2>/dev/null`;
+if ($SW_VERS =~ /^(\d+)\.(\d+)\.(\d+)$/) {
+if ($1 > 10 || ($1 == 10 && $2 >= 15)) {
+die "32-bit applications not supported on macOS 10.15 or 
later\n" if $KERNEL_BITS eq '32';
+return { target => "darwin64-x86_64" };
+}
+}
 return { target => "darwin-i386" } if $KERNEL_BITS eq '32';
 
 print <

[openssl] master update

2022-02-15 Thread Dr . Paul Dale
The branch master has been updated
   via  b926548b362531e8a64e7482c081611fab7183a8 (commit)
  from  065121ff198a84106023013420dedd57ac4ff53a (commit)


- Log -
commit b926548b362531e8a64e7482c081611fab7183a8
Author: Todd Short 
Date:   Wed Feb 9 15:59:37 2022 -0500

Force macOS 10.15 or later to be 64-bit

macOS Catalina (10.15) no longer supports 32-bit applications.
Do not wait 5 seconds to give the user the option of using KERNEL_BITS=32
Do not accept the KERNEL_BITS=32 option

Reviewed-by: Tomas Mraz 
Reviewed-by: Paul Dale 
(Merged from https://github.com/openssl/openssl/pull/17675)

---

Summary of changes:
 util/perl/OpenSSL/config.pm | 8 
 1 file changed, 8 insertions(+)

diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm
index fd4cce3c25..cb2f5097a8 100755
--- a/util/perl/OpenSSL/config.pm
+++ b/util/perl/OpenSSL/config.pm
@@ -485,6 +485,14 @@ EOF
   [ 'x86_64-apple-darwin.*',
 sub {
 my $KERNEL_BITS = $ENV{KERNEL_BITS} // '';
+# macOS >= 10.15 is 64-bit only
+my $SW_VERS = `sw_vers -productVersion 2>/dev/null`;
+if ($SW_VERS =~ /^(\d+)\.(\d+)\.(\d+)$/) {
+if ($1 > 10 || ($1 == 10 && $2 >= 15)) {
+die "32-bit applications not supported on macOS 10.15 or 
later\n" if $KERNEL_BITS eq '32';
+return { target => "darwin64-x86_64" };
+}
+}
 return { target => "darwin-i386" } if $KERNEL_BITS eq '32';
 
 print <