[openssl] master update
Dr. Paul Dale
pauli at openssl.org
Fri Nov 22 05:23:28 UTC 2019
The branch master has been updated
via acc7b9fb5c162c2ca522e5e1e09d1efbde8dc6a0 (commit)
from a89befba602353ff2fc83ba7037eb91307b2cb21 (commit)
- Log -----------------------------------------------------------------
commit acc7b9fb5c162c2ca522e5e1e09d1efbde8dc6a0
Author: Pauli <paul.dale at oracle.com>
Date: Thu Nov 21 13:50:03 2019 +1000
main: avoid a NULL dereference on initialisation.
Reviewed-by: Tim Hudson <tjh at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10495)
-----------------------------------------------------------------------
Summary of changes:
apps/openssl.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/apps/openssl.c b/apps/openssl.c
index 66189ca434..31f598815a 100644
--- a/apps/openssl.c
+++ b/apps/openssl.c
@@ -276,6 +276,13 @@ int main(int argc, char *argv[])
}
prog = prog_init();
+ if (prog == NULL) {
+ BIO_printf(bio_err,
+ "FATAL: Startup failure (dev note: prog_init() failed)\n");
+ ERR_print_errors(bio_err);
+ ret = 1;
+ goto end;
+ }
pname = opt_progname(argv[0]);
/* first check the program name */
More information about the openssl-commits
mailing list