[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Rich Salz
rsalz at openssl.org
Sat May 2 11:46:05 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via 6b3a315003f362150fddf8db072d4309f3f0d962 (commit)
from f296e411efc2d3ebbf37bdc9c1111e84a5982ec6 (commit)
- Log -----------------------------------------------------------------
commit 6b3a315003f362150fddf8db072d4309f3f0d962
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