summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--providers/legacyprov.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/providers/legacyprov.c b/providers/legacyprov.c
index 852f6a4e91..1f137a721f 100644
--- a/providers/legacyprov.c
+++ b/providers/legacyprov.c
@@ -178,13 +178,8 @@ int OSSL_provider_init(const OSSL_CORE_HANDLE *handle,
{
OSSL_LIB_CTX *libctx = NULL;
- /*
- * We do not need to use any up-calls provided by libcrypto, so we ignore
- * the "in" dispatch table.
- */
-
if ((*provctx = ossl_prov_ctx_new()) == NULL
- || (libctx = OSSL_LIB_CTX_new()) == NULL) {
+ || (libctx = OSSL_LIB_CTX_new_child(handle, in)) == NULL) {
OSSL_LIB_CTX_free(libctx);
legacy_teardown(*provctx);
*provctx = NULL;