mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
OpenSSL::paramnames: Use less magic perl
Constructions like $$cursor{whatever} and %$cursor{whatever} were ambiguous in some perl versions, and it's still better to use the arrow syntax for the way we use them, i.e. they can both be replaced with $cursor->{whatever}. Fixes #21152 Fixes #21172 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21178)
This commit is contained in:
parent
eb4129e12c
commit
3691f1e556
@ -576,12 +576,12 @@ sub generate_trie {
|
||||
}
|
||||
|
||||
if (not defined $$cursor{$c}) {
|
||||
$$cursor{$c} = {};
|
||||
$cursor->{$c} = {};
|
||||
$nodes++;
|
||||
}
|
||||
$cursor = %$cursor{$c};
|
||||
$cursor = $cursor->{$c};
|
||||
}
|
||||
$$cursor{'val'} = $name;
|
||||
$cursor->{'val'} = $name;
|
||||
}
|
||||
}
|
||||
#print "\n\n/* $nodes nodes for $chars letters*/\n\n";
|
||||
|
Loading…
x
Reference in New Issue
Block a user