[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Sun Feb 18 02:30:18 UTC 2018
The branch master has been updated
via 1d2c6b7d4a5cb00d43a8b57e028923f8592f49c7 (commit)
from 856f231bd230e7f8bd3a2183a32d39093ab4ddc3 (commit)
- Log -----------------------------------------------------------------
commit 1d2c6b7d4a5cb00d43a8b57e028923f8592f49c7
Author: Richard Levitte <levitte at openssl.org>
Date: Sat Feb 17 07:33:17 2018 +0100
Configure: avoid uninit data in configdata.pm
Fixes #5394
Reviewed-by: Tim Hudson <tjh at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5399)
-----------------------------------------------------------------------
Summary of changes:
Configure | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Configure b/Configure
index 9835cf0..0cc554f 100755
--- a/Configure
+++ b/Configure
@@ -2382,7 +2382,8 @@ _____
my $longest2 = 0;
foreach my $what (@disablables) {
$longest = length($what) if $longest < length($what);
- $longest2 = length($disabled{$what}) if $longest2 < length($disabled{$what});
+ $longest2 = length($disabled{$what})
+ if $disabled{$what} && $longest2 < length($disabled{$what});
}
print "\nEnabled features:\n\n";
foreach my $what (@disablables) {
More information about the openssl-commits
mailing list