From 3a6445821712cacc68924838f48873e7dca77280 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lutz=20J=C3=A4nicke?= Date: Fri, 27 Jul 2001 12:35:27 +0000 Subject: [PATCH] Another uninitialized static that may lead to problems on Solaris under some circumstances. --- crypto/dh/dh_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- GitLab