From: Richard Levitte Date: Sat, 14 Nov 2020 10:58:03 +0000 (+0100) Subject: CONF: Convert one last CONFerr() to ERR_raise() X-Git-Tag: openssl-3.0.0-alpha9~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e19c5a106428f5f805c9c54c60d2ead216277bcf;p=thirdparty%2Fopenssl.git CONF: Convert one last CONFerr() to ERR_raise() Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/13320) --- diff --git a/crypto/conf/conf_def.c b/crypto/conf/conf_def.c index 2637e17fd80..3f63a5f88d3 100644 --- a/crypto/conf/conf_def.c +++ b/crypto/conf/conf_def.c @@ -417,7 +417,7 @@ static int def_load_bio(CONF *conf, BIO *in, long *line) include_path = OPENSSL_malloc(newlen); if (include_path == NULL) { - CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_MALLOC_FAILURE); + ERR_raise(ERR_LIB_CONF, ERR_R_MALLOC_FAILURE); OPENSSL_free(include); goto err; }