CVE-2018-0739 CVE-2019-1563 CVE-2020-1971 CVE-2021-23840 CVE-2021-23841 CVE-2022-0778 CVE-2021-3712 (cherry picked from commit a582068887203f626772052e466343c6ef2d0719)
14 lines
656 B
Diff
14 lines
656 B
Diff
Index: openssl-1.0.2p/crypto/asn1/t_x509a.c
|
|
===================================================================
|
|
--- a/Cryptlib/OpenSSL/crypto/asn1/t_x509a.c
|
|
+++ b/Cryptlib/OpenSSL/crypto/asn1/t_x509a.c
|
|
@@ -104,7 +104,7 @@ int X509_CERT_AUX_print(BIO *out, X509_C
|
|
} else
|
|
BIO_printf(out, "%*sNo Rejected Uses.\n", indent, "");
|
|
if (aux->alias)
|
|
- BIO_printf(out, "%*sAlias: %s\n", indent, "", aux->alias->data);
|
|
+ BIO_printf(out, "%*sAlias: %.*s\n", indent, "", aux->alias->length, aux->alias->data);
|
|
if (aux->keyid) {
|
|
BIO_printf(out, "%*sKey Id: ", indent, "");
|
|
for (i = 0; i < aux->keyid->length; i++)
|