From 37530362fa8486c695247e2a72cf9b8cf9e55583 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 12 Jan 2002 13:13:22 +0000 Subject: [PATCH] Return value could be undefined. --- crypto/conf/conf_mod.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crypto/conf/conf_mod.c b/crypto/conf/conf_mod.c index cbbaf64f3c..3a1888a004 100644 --- a/crypto/conf/conf_mod.c +++ b/crypto/conf/conf_mod.c @@ -320,7 +320,8 @@ static CONF_MODULE *module_find(char *name) /* initialize a module */ static int module_init(CONF_MODULE *pmod, char *name, char *value, CONF *cnf) { - int ret, init_called = 0; + int ret = 1; + int init_called = 0; CONF_IMODULE *imod = NULL; /* Otherwise add initialized module to list */ -- 2.25.1