mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
coverity 1462548 Resource leak
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11651)
This commit is contained in:
parent
089c292825
commit
ada7d4c345
@ -63,11 +63,8 @@ int ffc_params_fromdata(FFC_PARAMS *ffc, const OSSL_PARAM params[])
|
||||
ffc->pcounter = i;
|
||||
}
|
||||
prm = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_COFACTOR);
|
||||
if (prm != NULL) {
|
||||
if (!OSSL_PARAM_get_BN(prm, &j))
|
||||
goto err;
|
||||
j = NULL;
|
||||
}
|
||||
if (prm != NULL && !OSSL_PARAM_get_BN(prm, &j))
|
||||
goto err;
|
||||
prm = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_H);
|
||||
if (prm != NULL) {
|
||||
if (!OSSL_PARAM_get_int(prm, &i))
|
||||
|
Loading…
x
Reference in New Issue
Block a user