From: Lutz Jänicke Date: Fri, 27 Jul 2001 12:35:27 +0000 (+0000) Subject: Another uninitialized static that may lead to problems on Solaris under some X-Git-Tag: OpenSSL_0_9_6c~147^2~61 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3a6445821712cacc68924838f48873e7dca77280;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 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;