mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
apps/pkcs12: Do not assume null termination of ASN1_UTF8STRING
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/16433)
This commit is contained in:
parent
3f7ad402b0
commit
2bdab81198
@ -1142,7 +1142,8 @@ void print_attribute(BIO *out, const ASN1_TYPE *av)
|
||||
break;
|
||||
|
||||
case V_ASN1_UTF8STRING:
|
||||
BIO_printf(out, "%s\n", av->value.utf8string->data);
|
||||
BIO_printf(out, "%.*s\n", av->value.utf8string->length,
|
||||
av->value.utf8string->data);
|
||||
break;
|
||||
|
||||
case V_ASN1_OCTET_STRING:
|
||||
|
Loading…
x
Reference in New Issue
Block a user