From 4c28ca442fa4873325d7ee9a061daae6bce5690e Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Mon, 13 Oct 2003 11:42:22 +0000 Subject: [PATCH] Fix uninitialized value. Patch from Joe Orton. --- ext/openssl/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 1964ea5933..d2f5999b0f 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -1433,7 +1433,7 @@ PHP_FUNCTION(openssl_csr_sign) long serial = 0L; X509 * cert = NULL, *new_cert = NULL; X509_REQ * csr; - EVP_PKEY * key = NULL, *priv_key; + EVP_PKEY * key = NULL, *priv_key = NULL; long csr_resource, certresource, keyresource; int i; struct php_x509_request req; -- 2.50.1