aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/dh
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2001-07-27 12:35:27 +0000
committerLutz Jänicke <jaenicke@openssl.org>2001-07-27 12:35:27 +0000
commit3a6445821712cacc68924838f48873e7dca77280 (patch)
tree4f27d090fb222c0c8849e3c7f659731d38650e29 /crypto/dh
parentea71c22731b9132a928c9b5c8e02d2fe5ecf39d2 (diff)
downloadopenssl-3a6445821712cacc68924838f48873e7dca77280.tar.gz
Another uninitialized static that may lead to problems on Solaris under some
circumstances.
Diffstat (limited to 'crypto/dh')
-rw-r--r--crypto/dh/dh_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dh/dh_lib.c b/crypto/dh/dh_lib.c
index 2d778ef300..dcd93c19a9 100644
--- a/crypto/dh/dh_lib.c
+++ b/crypto/dh/dh_lib.c
@@ -64,7 +64,7 @@
const char *DH_version="Diffie-Hellman" OPENSSL_VERSION_PTEXT;
-static const DH_METHOD *default_DH_method;
+static const DH_METHOD *default_DH_method = NULL;
static int dh_meth_num = 0;
static STACK_OF(CRYPTO_EX_DATA_FUNCS) *dh_meth = NULL;