From 6ca487992bc63d45f9780c6b83eecf025830e34b Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sun, 21 Oct 2001 01:05:53 +0000 Subject: [PATCH] Stop spurious "unable to load config info" errors in req --- apps/openssl.c | 7 ++++++- apps/req.c | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/openssl.c b/apps/openssl.c index 7edd9e3132..a344011778 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -274,7 +274,12 @@ int main(int Argc, char *Argv[]) config=NCONF_new(NULL); i=NCONF_load(config,p,&errline); - if (i == 0) ERR_clear_error(); + if (i == 0) + { + NCONF_free(config); + config = NULL; + ERR_clear_error(); + } prog=prog_init(); diff --git a/apps/req.c b/apps/req.c index 9611431fe7..54ddfab0f4 100644 --- a/apps/req.c +++ b/apps/req.c @@ -479,7 +479,7 @@ bad: req_conf=config; BIO_printf(bio_err,"Using configuration from %s\n", default_config_file); - if (i == 0) + if (req_conf == NULL) { BIO_printf(bio_err,"Unable to load config info\n"); } -- 2.34.1