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:
parent
bfa293cd2a
commit
c6a784afa2
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue