From: Ben Laurie Date: Wed, 8 May 2002 15:13:24 +0000 (+0000) Subject: Fix warning. X-Git-Tag: OpenSSL_0_9_7-beta1~65 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4e9a77cf26c71b9518ac6e7730eb1c26c99644fd;p=oweals%2Fopenssl.git Fix warning. --- diff --git a/crypto/conf/conf_mod.c b/crypto/conf/conf_mod.c index 459a2d7df1..f92babc2e2 100644 --- a/crypto/conf/conf_mod.c +++ b/crypto/conf/conf_mod.c @@ -165,7 +165,7 @@ int CONF_modules_load(const CONF *cnf, const char *appname, int CONF_modules_load_file(const char *filename, const char *appname, unsigned long flags) { - char *file; + char *file = NULL; CONF *conf = NULL; int ret = 0; conf = NCONF_new(NULL);