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/s_server.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/s_server.c')
-rw-r--r-- | apps/s_server.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/s_server.c b/apps/s_server.c index 34b28736a1..b00303630f 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -1610,7 +1610,9 @@ int s_server_main(int argc, char *argv[]) if (argc != 0) goto opthelp; - app_RAND_load(); + if (!app_RAND_load()) + goto end; + #ifndef OPENSSL_NO_NEXTPROTONEG if (min_version == TLS1_3_VERSION && next_proto_neg_in != NULL) { BIO_printf(bio_err, "Cannot supply -nextprotoneg with TLSv1.3\n"); |