mirror of https://github.com/openssl/openssl.git
x_attrib: fix a memory leak
The X509_NAME object needs to be free'd even if printing it fails. Introduced inbe5adfd6e3("Support subjectDirectoryAttributes and associatedInformation exts", 2024-06-18), but subsequently moved in7bcfb41489("ossl_print_attribute_value(): use a sequence value only if type is a sequence", 2024-08-05). Signed-off-by: Beat Bolli <dev@drbeat.li> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/25207)
This commit is contained in:
parent
1fb39522a2
commit
223e0020e4
|
|
@ -98,6 +98,7 @@ int ossl_print_attribute_value(BIO *out,
|
||||||
unsigned char *value;
|
unsigned char *value;
|
||||||
X509_NAME *xn = NULL;
|
X509_NAME *xn = NULL;
|
||||||
int64_t int_val;
|
int64_t int_val;
|
||||||
|
int ret = 1;
|
||||||
|
|
||||||
switch (av->type) {
|
switch (av->type) {
|
||||||
case V_ASN1_BOOLEAN:
|
case V_ASN1_BOOLEAN:
|
||||||
|
|
@ -192,9 +193,9 @@ int ossl_print_attribute_value(BIO *out,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if (X509_NAME_print_ex(out, xn, indent, XN_FLAG_SEP_CPLUS_SPC) <= 0)
|
if (X509_NAME_print_ex(out, xn, indent, XN_FLAG_SEP_CPLUS_SPC) <= 0)
|
||||||
return 0;
|
ret = 0;
|
||||||
X509_NAME_free(xn);
|
X509_NAME_free(xn);
|
||||||
return 1;
|
return ret;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue