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:
Tomas Mraz 2021-08-31 09:05:59 +02:00
parent 3f7ad402b0
commit 2bdab81198

View File

@ -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: