summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2012-12-18 16:36:27 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2012-12-18 16:39:13 +0000
commit6de1067a8651cc74c59bb661f135235cd8d98e5b (patch)
treefb09194a6df69cc8cca0975b491533f85ef6a97a
parente8fcf27cde9d3ae4c0147444bffa57f237fe2507 (diff)
Initialise OCSP-related pointers before use.
-rw-r--r--src/src/tls-openssl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c
index 440993585..67c9c3767 100644
--- a/src/src/tls-openssl.c
+++ b/src/src/tls-openssl.c
@@ -788,6 +788,8 @@ cbinfo->certificate = certificate;
cbinfo->privatekey = privatekey;
#ifdef EXPERIMENTAL_OCSP
cbinfo->ocsp_file = ocsp_file;
+cbinfo->ocsp_file_expanded = NULL;
+cbinfo->ocsp_response = NULL;
#endif
cbinfo->dhparam = dhparam;
cbinfo->host = host;