aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-12-13 22:06:37 +0000
committerNils Larsch <nils@openssl.org>2006-12-13 22:06:37 +0000
commit5dfe9100236cbd9097187375606a6f80f2804565 (patch)
treeadda44a8e15420f8e29dd3fed5a8ea13a5c9d227 /apps
parent91b73acb19653ab586b3fb66258b6892444050ec (diff)
downloadopenssl-5dfe9100236cbd9097187375606a6f80f2804565.zip
openssl-5dfe9100236cbd9097187375606a6f80f2804565.tar.gz
openssl-5dfe9100236cbd9097187375606a6f80f2804565.tar.bz2
properly initialize SSL context, check return value
Diffstat (limited to 'apps')
-rw-r--r--apps/ocsp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/ocsp.c b/apps/ocsp.c
index cbfbe3f..8bf67aa 100644
--- a/apps/ocsp.c
+++ b/apps/ocsp.c
@@ -143,6 +143,7 @@ int MAIN(int argc, char **argv)
if (!load_config(bio_err, NULL))
goto end;
SSL_load_error_strings();
+ OpenSSL_add_ssl_algorithms();
args = argv + 1;
reqnames = sk_new_null();
ids = sk_OCSP_CERTID_new_null();
@@ -746,6 +747,11 @@ int MAIN(int argc, char **argv)
BIO_printf(bio_err, "SSL is disabled\n");
goto end;
#endif
+ if (ctx == NULL)
+ {
+ BIO_printf(bio_err, "Error creating SSL context.\n");
+ goto end;
+ }
SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
sbio = BIO_new_ssl(ctx, 1);
cbio = BIO_push(sbio, cbio);