[exim-cvs] Initialise OCSP-related pointers before use.

Top Page
Delete this message
Reply to this message
Author: Exim Git Commits Mailing List
Date:  
To: exim-cvs
Subject: [exim-cvs] Initialise OCSP-related pointers before use.
Gitweb: http://git.exim.org/exim.git/commitdiff/6de1067a8651cc74c59bb661f135235cd8d98e5b
Commit:     6de1067a8651cc74c59bb661f135235cd8d98e5b
Parent:     e8fcf27cde9d3ae4c0147444bffa57f237fe2507
Author:     Jeremy Harris <jgh146exb@???>
AuthorDate: Tue Dec 18 16:36:27 2012 +0000
Committer:  Jeremy Harris <jgh146exb@???>
CommitDate: Tue Dec 18 16:39:13 2012 +0000


    Initialise OCSP-related pointers before use.
---
 src/src/tls-openssl.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c
index 4409935..67c9c37 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;