From: Matt Caswell Date: Wed, 14 Oct 2020 15:28:01 +0000 (+0100) Subject: Remove some unneeded variables from dhparam X-Git-Tag: openssl-3.0.0-alpha9~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1fd08e909d6c325e86b0bfdd0c89c2011fa44ce2;p=thirdparty%2Fopenssl.git Remove some unneeded variables from dhparam Previously changes left some variables behind that were no longer needed. We now remove them. Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/13231) --- diff --git a/apps/dhparam.c b/apps/dhparam.c index f9587dd71ea..6717c952e96 100644 --- a/apps/dhparam.c +++ b/apps/dhparam.c @@ -79,7 +79,6 @@ const OPTIONS dhparam_options[] = { int dhparam_main(int argc, char **argv) { BIO *in = NULL, *out = NULL; - DH *dh = NULL, *alloc_dh = NULL; EVP_PKEY *pkey = NULL, *tmppkey = NULL; EVP_PKEY_CTX *ctx = NULL; char *infile = NULL, *outfile = NULL, *prog; @@ -343,7 +342,6 @@ int dhparam_main(int argc, char **argv) end: if (ret != 0) ERR_print_errors(bio_err); - DH_free(alloc_dh); BIO_free(in); BIO_free_all(out); EVP_PKEY_free(pkey);