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

Rich Salz rsalz at openssl.org
Sat May 2 11:46:21 UTC 2015


The branch OpenSSL_1_0_1-stable has been updated
       via  cd258a84db854e1099d7f363789756139d9a9ca4 (commit)
      from  017f695f2ca06ba45f6d9dd7be508934fb2a37e3 (commit)


- Log -----------------------------------------------------------------
commit cd258a84db854e1099d7f363789756139d9a9ca4
Author: Hanno Böck <hanno at hboeck.de>
Date:   Fri May 1 22:27:20 2015 -0400

    Fix uninitialized variable.
    
    Signed-off-by: Rich Salz <rsalz at openssl.org>
    Reviewed-by: Viktor Dukhovni <viktor at openssl.org>
    (cherry picked from commit 539ed89f686866b82a9ec9a4c3b112878d29cd73)

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

Summary of changes:
 apps/asn1pars.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/asn1pars.c b/apps/asn1pars.c
index 7a0f169..11b0787 100644
--- a/apps/asn1pars.c
+++ b/apps/asn1pars.c
@@ -375,7 +375,7 @@ static int do_generate(BIO *bio, char *genstr, char *genconf, BUF_MEM *buf)
 {
     CONF *cnf = NULL;
     int len;
-    long errline;
+    long errline = 0;
     unsigned char *p;
     ASN1_TYPE *atyp = NULL;
 


More information about the openssl-commits mailing list