The branch master has been updated
via 396ba1ca6846a3a19d39275d771082c8674c6a50 (commit)
from a263f320ebdb32ccc058ef02a617edbfe4a63e7f (commit)
- Log -----------------------------------------------------------------
commit 396ba1ca6846a3a19d39275d771082c8674c6a50
Author: Rich Salz <[email protected]>
Date: Thu May 12 16:08:01 2016 -0400
Fix uninitialized variable
Reviewed-by: Dr. Stephen Henson <[email protected]>
-----------------------------------------------------------------------
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;
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits