From: Ben Laurie Date: Sat, 12 Jan 2002 13:13:22 +0000 (+0000) Subject: Return value could be undefined. X-Git-Tag: OpenSSL-engine-0_9_6c^2^2~106 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=37530362fa8486c695247e2a72cf9b8cf9e55583 Return value could be undefined. --- 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 */