diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2021-04-07 05:45:19 +0200 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2021-04-12 08:55:30 +0200 |
commit | 3f883c7c835ff577a6df37e238956c5b9016dc93 (patch) | |
tree | 53981bf279887c1dc043e264cbaa61710b75c2b9 /crypto/dsa | |
parent | Add OSSL_PARAM_dup() and OSSL_PARAM_merge(). (diff) | |
download | openssl-3f883c7c835ff577a6df37e238956c5b9016dc93.tar.xz openssl-3f883c7c835ff577a6df37e238956c5b9016dc93.zip |
Replace OSSL_PARAM_BLD_free_params() with OSSL_PARAM_free().
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14785)
Diffstat (limited to 'crypto/dsa')
-rw-r--r-- | crypto/dsa/dsa_ameth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dsa/dsa_ameth.c b/crypto/dsa/dsa_ameth.c index 1009f1a5c7..69964c053c 100644 --- a/crypto/dsa/dsa_ameth.c +++ b/crypto/dsa/dsa_ameth.c @@ -474,7 +474,7 @@ static int dsa_pkey_export_to(const EVP_PKEY *from, void *to_keydata, /* We export, the provider imports */ rv = evp_keymgmt_import(to_keymgmt, to_keydata, selection, params); - OSSL_PARAM_BLD_free_params(params); + OSSL_PARAM_free(params); err: OSSL_PARAM_BLD_free(tmpl); return rv; |