[openssl-commits] [openssl] master update
Rich Salz
rsalz at openssl.org
Sun May 31 21:58:48 UTC 2015
The branch master has been updated
via 1c8a527cff6cd4e07935e5a86335963e93adf75a (commit)
from 688c244685981085cf0290a228771391cf22ff18 (commit)
- Log -----------------------------------------------------------------
commit 1c8a527cff6cd4e07935e5a86335963e93adf75a
Author: Rich Salz <rsalz at akamai.com>
Date: Sun May 31 14:46:44 2015 -0400
Silence Clang warning about unit'd variable
Reviewed-by: Tim Hudson <tjh at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
ssl/t1_enc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c
index e410ff7..e865341 100644
--- a/ssl/t1_enc.c
+++ b/ssl/t1_enc.c
@@ -808,7 +808,7 @@ int tls1_export_keying_material(SSL *s, unsigned char *out, size_t olen,
{
unsigned char *buff;
unsigned char *val = NULL;
- size_t vallen, currentvalpos;
+ size_t vallen = 0, currentvalpos;
int rv;
buff = OPENSSL_malloc(olen);
More information about the openssl-commits
mailing list