diff options
author | Ben Laurie <ben@openssl.org> | 2000-10-16 15:08:16 +0200 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 2000-10-16 15:08:16 +0200 |
commit | 1bc5dd3efc7495b72f2780b4ef8d502bd899c783 (patch) | |
tree | a109526f77e74ad60d9fc96d53c696bbee34f618 /crypto/conf | |
parent | CRYPTO_get_ex_new_index would never return an error. (diff) | |
download | openssl-1bc5dd3efc7495b72f2780b4ef8d502bd899c783.tar.xz openssl-1bc5dd3efc7495b72f2780b4ef8d502bd899c783.zip |
Always return a value.
Submitted by:
Reviewed by:
PR:
Diffstat (limited to 'crypto/conf')
-rw-r--r-- | crypto/conf/conf_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |