Branch: refs/heads/openssl-3.0
Home: https://github.com/openssl/openssl
Commit: d83c465754ab4bfeb33718ad5ac851388079daba
https://github.com/openssl/openssl/commit/d83c465754ab4bfeb33718ad5ac851388079daba
Author: Richard Levitte <[email protected]>
Date: 2022-09-15 (Thu, 15 Sep 2022)
Changed paths:
M util/wrap.pl.in
Log Message:
-----------
util/wrap.pl.in: Use parentheses so `kill` gets all its arguments
In perl, this may be ambiguous:
fn (expr1), expr2
Is the comma (which may be `=>` just as well in this case) a separator
between arguments to `fn`, or is it the comma operator, separating the
expressions `fn(expr1)` and `expr2`? It appears that in this particular
case, perl takes the existing parentheses to mean the latter. When the
former was intended, extra parentheses are required.
Fixes #19209
Reviewed-by: Dmitry Belyavskiy <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/19211)
(cherry picked from commit ef6d6e452dc57ef4a55d7a6ec0693be650009bb5)