From: Lutz Jänicke Date: Fri, 27 Jul 2001 12:36:16 +0000 (+0000) Subject: Another uninitialized static that may lead to problems on Solaris under some X-Git-Tag: OpenSSL_0_9_6c~168 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cf1b34ad345656332bea20f5518d87ddeb7857f0;p=oweals%2Fopenssl.git Another uninitialized static that may lead to problems on Solaris under some circumstances. --- diff --git a/crypto/dh/dh_lib.c b/crypto/dh/dh_lib.c index 8516bdafb4..a46270765e 100644 --- a/crypto/dh/dh_lib.c +++ b/crypto/dh/dh_lib.c @@ -63,7 +63,7 @@ const char *DH_version="Diffie-Hellman" OPENSSL_VERSION_PTEXT; -static DH_METHOD *default_DH_method; +static DH_METHOD *default_DH_method = NULL; static int dh_meth_num = 0; static STACK_OF(CRYPTO_EX_DATA_FUNCS) *dh_meth = NULL;