[openssl-commits] [openssl] OpenSSL_1_0_1-stable update

Dr. Stephen Henson steve at openssl.org
Tue Nov 24 16:56:21 UTC 2015


The branch OpenSSL_1_0_1-stable has been updated
       via  fc45da053535ee4de573aeb4d895ef6d6f7b72c9 (commit)
      from  5844c9453f409c95fab3f295214b94dc27e38502 (commit)


- Log -----------------------------------------------------------------
commit fc45da053535ee4de573aeb4d895ef6d6f7b72c9
Author: Dr. Stephen Henson <steve at openssl.org>
Date:   Tue Nov 24 16:37:52 2015 +0000

    Fix uninitialised p error.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (cherry picked from commit 63eb10a07ee29a312e50a227f5b3a290b1ad22b4)

-----------------------------------------------------------------------

Summary of changes:
 crypto/asn1/asn1_par.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/asn1/asn1_par.c b/crypto/asn1/asn1_par.c
index 21dfe0c..0ca985a 100644
--- a/crypto/asn1/asn1_par.c
+++ b/crypto/asn1/asn1_par.c
@@ -135,7 +135,7 @@ static int asn1_parse2(BIO *bp, const unsigned char **pp, long length,
 
     if (depth > ASN1_PARSE_MAXDEPTH) {
             BIO_puts(bp, "BAD RECURSION DEPTH\n");
-            goto end;
+            return 0;
     }
 
     p = *pp;


More information about the openssl-commits mailing list