From: Jeremy Harris Date: Tue, 18 Dec 2012 16:36:27 +0000 (+0000) Subject: Initialise OCSP-related pointers before use. X-Git-Tag: exim-4_81_RC1~3^2~10 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/6de1067a8651cc74c59bb661f135235cd8d98e5b Initialise OCSP-related pointers before use. --- 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;