From: Wez Furlong Date: Mon, 13 Oct 2003 11:42:22 +0000 (+0000) Subject: Fix uninitialized value. X-Git-Tag: php-4.3.4RC2~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c28ca442fa4873325d7ee9a061daae6bce5690e;p=php Fix uninitialized value. Patch from Joe Orton. --- 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;