ossl_provider_new(): Fix memory leak on error

Fixes #24095

Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24100)

(cherry picked from commit 875db35ac6)
This commit is contained in:
Tomas Mraz 2024-04-11 09:27:47 +02:00
parent bfa293cd2a
commit c6a784afa2

View file

@ -564,8 +564,10 @@ OSSL_PROVIDER *ossl_provider_new(OSSL_LIB_CTX *libctx, const char *name,
if (params[i].data_type != OSSL_PARAM_UTF8_STRING)
continue;
if (ossl_provider_info_add_parameter(&template, params[i].key,
(char *)params[i].data) <= 0)
(char *)params[i].data) <= 0) {
sk_INFOPAIR_pop_free(template.parameters, infopair_free);
return NULL;
}
}
}