mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
keymgmt: fix coverity 1484886 unchecked return value
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/15300)
This commit is contained in:
parent
3c18459235
commit
84c5ad23e1
@ -255,9 +255,10 @@ int otherparams_to_params(const EC_KEY *ec, OSSL_PARAM_BLD *tmpl,
|
||||
name))
|
||||
return 0;
|
||||
|
||||
if ((EC_KEY_get_enc_flags(ec) & EC_PKEY_NO_PUBKEY) != 0)
|
||||
ossl_param_build_set_int(tmpl, params,
|
||||
OSSL_PKEY_PARAM_EC_INCLUDE_PUBLIC, 0);
|
||||
if ((EC_KEY_get_enc_flags(ec) & EC_PKEY_NO_PUBKEY) != 0
|
||||
&& !ossl_param_build_set_int(tmpl, params,
|
||||
OSSL_PKEY_PARAM_EC_INCLUDE_PUBLIC, 0))
|
||||
return 0;
|
||||
|
||||
ecdh_cofactor_mode =
|
||||
(EC_KEY_get_flags(ec) & EC_FLAG_COFACTOR_ECDH) ? 1 : 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user