Fix uninitialized variable

Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
This commit is contained in:
Rich Salz 2016-05-12 16:08:01 -04:00
parent a263f320eb
commit 396ba1ca68
1 changed files with 1 additions and 1 deletions

View File

@ -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;