[openssl] master update

Dr. Paul Dale pauli at openssl.org
Sat May 29 06:09:36 UTC 2021


The branch master has been updated
       via  83058e810b3abf6b04c20857323b9e487cbd0367 (commit)
      from  30691da1ba465f3cff5d865187fbf5c5244448eb (commit)


- Log -----------------------------------------------------------------
commit 83058e810b3abf6b04c20857323b9e487cbd0367
Author: Rich Salz <rsalz at akamai.com>
Date:   Tue May 25 13:42:45 2021 -0400

    Make undef'd counts zero by default.
    
    Fixes #15409
    
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    Reviewed-by: Paul Dale <pauli at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/15467)

-----------------------------------------------------------------------

Summary of changes:
 util/mknum.pl | 1 +
 1 file changed, 1 insertion(+)

diff --git a/util/mknum.pl b/util/mknum.pl
index f661a9122d..92435a8712 100644
--- a/util/mknum.pl
+++ b/util/mknum.pl
@@ -139,6 +139,7 @@ if ($checkexist) {
     if ($dropped) {
         print STDERR "${ordinals_file}: Dropped $dropped new symbols\n";
     }
+    $stats{unassigned} = 0 unless defined $stats{unassigned};
     $unassigned = $stats{unassigned} - $dropped;
     if ($unassigned) {
         my $symbol = $unassigned == 1 ? "symbol" : "symbols";


More information about the openssl-commits mailing list