summaryrefslogtreecommitdiffstats
path: root/apps/ec.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-05-12 16:08:01 -0400
committerRich Salz <rsalz@openssl.org>2016-05-12 16:08:01 -0400
commit396ba1ca6846a3a19d39275d771082c8674c6a50 (patch)
tree58cdc4ba5b8d4cf2e474abf2220acc1af246326e /apps/ec.c
parenta263f320ebdb32ccc058ef02a617edbfe4a63e7f (diff)
Fix uninitialized variable
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
Diffstat (limited to 'apps/ec.c')
-rw-r--r--apps/ec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/ec.c b/apps/ec.c
index 5d5edbccf8..50ff939645 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;