summaryrefslogtreecommitdiffstats
path: root/crypto/conf
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2002-05-08 15:13:24 +0000
committerBen Laurie <ben@openssl.org>2002-05-08 15:13:24 +0000
commit4e9a77cf26c71b9518ac6e7730eb1c26c99644fd (patch)
tree6b4b38d4aeae67805d099b3ac5d55447f84735de /crypto/conf
parent14ef32631cd96b97656dc18c28fe0ae517e489ad (diff)
Fix warning.
Diffstat (limited to 'crypto/conf')
-rw-r--r--crypto/conf/conf_mod.c2
1 files changed, 1 insertions, 1 deletions
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);