diff options
author | Matt Caswell <matt@openssl.org> | 2021-04-29 17:37:42 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2021-05-11 15:59:43 +0200 |
commit | 8c627075656cf2709680eeb5aa1826f00db2e483 (patch) | |
tree | e9c1e8ac25bf22bfefa28d3a5871b1a67ac16eda /crypto/provider.c | |
parent | Add a test to check that child provider callbacks are working (diff) | |
download | openssl-8c627075656cf2709680eeb5aa1826f00db2e483.tar.xz openssl-8c627075656cf2709680eeb5aa1826f00db2e483.zip |
Add support for child provider to up_ref/free their parent
If the ref counts on a child provider change, then this needs to be
reflected in the parent so we add callbacks to do this.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14991)
Diffstat (limited to 'crypto/provider.c')
-rw-r--r-- | crypto/provider.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/provider.c b/crypto/provider.c index 743c2f4846..766086a47b 100644 --- a/crypto/provider.c +++ b/crypto/provider.c @@ -23,7 +23,7 @@ OSSL_PROVIDER *OSSL_PROVIDER_try_load(OSSL_LIB_CTX *libctx, const char *name, && (prov = ossl_provider_new(libctx, name, NULL, 0)) == NULL) return NULL; - if (!ossl_provider_activate(prov, retain_fallbacks)) { + if (!ossl_provider_activate(prov, retain_fallbacks, 1)) { ossl_provider_free(prov); return NULL; } |