[openssl-commits] [openssl] OpenSSL_0_9_8-stable update

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


The branch OpenSSL_0_9_8-stable has been updated
       via  2c02faeecd2bd321d6b8dd7bbd2f34325785fd03 (commit)
      from  a8731c0cb819302b1b790463fdb86d3af998a283 (commit)


- Log -----------------------------------------------------------------
commit 2c02faeecd2bd321d6b8dd7bbd2f34325785fd03
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 8120f26..e16483d 100644
--- a/crypto/asn1/asn1_par.c
+++ b/crypto/asn1/asn1_par.c
@@ -141,7 +141,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