From: Richard Levitte Date: Mon, 4 Nov 2019 09:33:10 +0000 (+0100) Subject: util/mkdef.pl: writer_VMS(): handle symbols with no assigned number X-Git-Tag: openssl-3.0.0-alpha1~1015 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=e4f2d539f631060654faf3b45f54e222637109ac util/mkdef.pl: writer_VMS(): handle symbols with no assigned number Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/10348) --- diff --git a/util/mkdef.pl b/util/mkdef.pl index a860db601d..11471499df 100755 --- a/util/mkdef.pl +++ b/util/mkdef.pl @@ -323,7 +323,10 @@ sub writer_VMS { my $last_num = 0; foreach (@_) { - while (++$last_num < $_->number()) { + my $this_num = $_->number(); + $this_num = $last_num + 1 if $this_num =~ m|^\?|; + + while (++$last_num < $this_num) { push @slot_collection, $collector->(); # Just occupy a slot } my $type = { @@ -406,12 +409,20 @@ int main() { _____ + my $last_num = 0; for (@_) { + my $this_num = $_->number(); + $this_num = $last_num + 1 if $this_num =~ m|^\?|; + if ($_->type() eq 'VARIABLE') { - print "\textern int ", $_->name(), '; /* type unknown */ /* ', $_->number(), ' ', $_->version(), " */\n"; + print "\textern int ", $_->name(), '; /* type unknown */ /* ', + $this_num, ' ', $_->version(), " */\n"; } else { - print "\textern int ", $_->name(), '(); /* type unknown */ /* ', $_->number(), ' ', $_->version(), " */\n"; + print "\textern int ", $_->name(), '(); /* type unknown */ /* ', + $this_num, ' ', $_->version(), " */\n"; } + + $last_num = $this_num; } print <<'_____'; }