components/openssl/openssl-1.0.1/patches/48_large_crl.patch
branchs11u3-sru
changeset 6981 1d2ebf9515bd
parent 6980 f9de80b7cc17
child 6985 b1711a8f4522
--- a/components/openssl/openssl-1.0.1/patches/48_large_crl.patch	Tue Sep 27 00:30:26 2016 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-# The patch is based on the following commit from the upstream:
-# https://github.com/openssl/openssl/commit/a1eef756cc1948e
-# The fix is patched until the new version becomes available from the upstream.
---- a/crypto/asn1/x_name.c	2016-07-12 15:17:45.766267352 -0700
-+++ b/crypto/asn1/x_name.c	2016-07-12 15:18:02.542842140 -0700
-@@ -199,10 +199,8 @@
-     int i, j, ret;
-     STACK_OF(X509_NAME_ENTRY) *entries;
-     X509_NAME_ENTRY *entry;
--    if (len > X509_NAME_MAX) {
--        ASN1err(ASN1_F_X509_NAME_EX_D2I, ASN1_R_TOO_LONG);
--        return 0;
--    }
-+    if (len > X509_NAME_MAX)
-+        len = X509_NAME_MAX;
-     q = p;
- 
-     /* Get internal representation of Name */