[openssl-commits] [openssl] master update
Rich Salz
rsalz at openssl.org
Thu May 12 20:08:28 UTC 2016
The branch master has been updated
via 396ba1ca6846a3a19d39275d771082c8674c6a50 (commit)
from a263f320ebdb32ccc058ef02a617edbfe4a63e7f (commit)
- Log -----------------------------------------------------------------
commit 396ba1ca6846a3a19d39275d771082c8674c6a50
Author: Rich Salz <rsalz at openssl.org>
Date: Thu May 12 16:08:01 2016 -0400
Fix uninitialized variable
Reviewed-by: Dr. Stephen Henson <steve at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
apps/ec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/ec.c b/apps/ec.c
index 5d5edbc..50ff939 100644
--- a/apps/ec.c
+++ b/apps/ec.c
@@ -118,7 +118,7 @@ OPTIONS ec_options[] = {
int ec_main(int argc, char **argv)
{
BIO *in = NULL, *out = NULL;
- ENGINE *e;
+ ENGINE *e = NULL;
EC_KEY *eckey = NULL;
const EC_GROUP *group;
const EVP_CIPHER *enc = NULL;
More information about the openssl-commits
mailing list