From: Wez Furlong Date: Mon, 13 Oct 2003 11:43:14 +0000 (+0000) Subject: Fix unintialized variable. X-Git-Tag: RELEASE_1_3b3~66 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=42ae98d7a21343fb884985f5d2d3b5b37f831238;p=php Fix unintialized variable. Patch by Joe Orton. --- diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index f6765e5c87..490f7810a5 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -1477,7 +1477,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;