crypto/conf: openssl_config_int() returns unitialized value
openssl_config_int() returns the uninitialized variable `ret` when compiled with OPENSSL_SYS_UEFI. Fixes #9026 Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9029)
This commit is contained in:
parent
ea8d07b155
commit
f4a96507fb
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ void OPENSSL_config(const char *appname)
|
|||
|
||||
int openssl_config_int(const OPENSSL_INIT_SETTINGS *settings)
|
||||
{
|
||||
int ret;
|
||||
int ret = 0;
|
||||
const char *filename;
|
||||
const char *appname;
|
||||
unsigned long flags;
|
||||
|
|
Loading…
Reference in a new issue