diff options
author | Matt Caswell <matt@openssl.org> | 2021-04-26 12:35:17 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2021-05-11 15:56:55 +0200 |
commit | a16d21744df686a7c005d1f129915d9083476e14 (patch) | |
tree | 1ea4d25a974b2f7cfcaafe65a03f9557b8ddc780 /providers/fips/fipsprov.c | |
parent | Only load the config file into the default libctx if necessary (diff) | |
download | openssl-a16d21744df686a7c005d1f129915d9083476e14.tar.xz openssl-a16d21744df686a7c005d1f129915d9083476e14.zip |
Add the ability for ex_data to have a priority
Where an object has multiple ex_data associated with it, then we free that
ex_data in order of priority (high priority first).
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14991)
Diffstat (limited to 'providers/fips/fipsprov.c')
-rw-r--r-- | providers/fips/fipsprov.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/providers/fips/fipsprov.c b/providers/fips/fipsprov.c index 841c80bab7..7998d55d9a 100644 --- a/providers/fips/fipsprov.c +++ b/providers/fips/fipsprov.c @@ -96,6 +96,7 @@ static void fips_prov_ossl_ctx_free(void *fgbl) } static const OSSL_LIB_CTX_METHOD fips_prov_ossl_ctx_method = { + OSSL_LIB_CTX_METHOD_DEFAULT_PRIORITY, fips_prov_ossl_ctx_new, fips_prov_ossl_ctx_free, }; |