[openssl] master update

dev at ddvo.net dev at ddvo.net
Thu Sep 10 10:04:12 UTC 2020


The branch master has been updated
       via  388f2d9f6c3faebc72722ba6bb76df12146ad988 (commit)
      from  3101ab603cd82cdbc81de0902b2b4718e8f1279b (commit)


- Log -----------------------------------------------------------------
commit 388f2d9f6c3faebc72722ba6bb76df12146ad988
Author: Dr. David von Oheimb <David.von.Oheimb at siemens.com>
Date:   Tue Sep 8 14:31:59 2020 +0200

    app_load_config_bio(): fix crash on error
    
    It turns out that the CONF_modules_load(conf, NULL, 0) call is just wrong.
    
    Reviewed-by: Tomas Mraz <tmraz at fedoraproject.org>
    (Merged from https://github.com/openssl/openssl/pull/12817)

-----------------------------------------------------------------------

Summary of changes:
 apps/lib/apps.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/apps/lib/apps.c b/apps/lib/apps.c
index f10e91deb7..878ec18f0b 100644
--- a/apps/lib/apps.c
+++ b/apps/lib/apps.c
@@ -389,7 +389,6 @@ CONF *app_load_config_bio(BIO *in, const char *filename)
     else
         BIO_printf(bio_err, "config input");
 
-    CONF_modules_load(conf, NULL, 0);
     NCONF_free(conf);
     return NULL;
 }


More information about the openssl-commits mailing list