From: Ben Laurie Date: Mon, 16 Oct 2000 13:08:16 +0000 (+0000) Subject: Always return a value. X-Git-Tag: BEFORE_engine~36 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=1bc5dd3efc7495b72f2780b4ef8d502bd899c783;hp=0ded1638ba3501f5a75d9ce86568482188207864 Always return a value. Submitted by: Reviewed by: PR: --- diff --git a/crypto/conf/conf_lib.c b/crypto/conf/conf_lib.c index 6a650f18e7..51bd0db655 100644 --- a/crypto/conf/conf_lib.c +++ b/crypto/conf/conf_lib.c @@ -322,7 +322,7 @@ char *NCONF_get_string(CONF *conf,char *group,char *name) CONF_R_NO_CONF_OR_ENVIRONMENT_VARIABLE); return NULL; } - + return NULL; } long NCONF_get_number(CONF *conf,char *group,char *name)