diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2021-04-03 12:53:51 +0200 |
---|---|---|
committer | Dr. David von Oheimb <dev@ddvo.net> | 2021-04-14 16:48:27 +0200 |
commit | 3ad6030948ac999de165f6185116459d74644e8d (patch) | |
tree | cd1f05f67890bc55b9cab065b963dfa5c7ded721 /apps/dhparam.c | |
parent | Document the invariants for the empty X509_NAME encoding (diff) | |
download | openssl-3ad6030948ac999de165f6185116459d74644e8d.tar.xz openssl-3ad6030948ac999de165f6185116459d74644e8d.zip |
APPS: make apps strict on app_RAND_load() and app_RAND_write() failure
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14840)
Diffstat (limited to 'apps/dhparam.c')
-rw-r--r-- | apps/dhparam.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dhparam.c b/apps/dhparam.c index 136dbcff64..b43935eb7f 100644 --- a/apps/dhparam.c +++ b/apps/dhparam.c @@ -158,8 +158,8 @@ int dhparam_main(int argc, char **argv) } else if (argc != 0) { goto opthelp; } - app_RAND_load(); - + if (!app_RAND_load()) + goto end; if (g && !num) num = DEFBITS; |