wez Mon Oct 13 07:42:18 2003 EDT
Modified files: (Branch: PHP_4_3)
/php-src/ext/openssl openssl.c
Log:
Fix uninitialized value.
Patch from Joe Orton.
Index: php-src/ext/openssl/openssl.c
diff -u php-src/ext/openssl/openssl.c:1.52.2.16 php-src/ext/openssl/openssl.c:1.52.2.17
--- php-src/ext/openssl/openssl.c:1.52.2.16 Tue Sep 23 10:52:25 2003
+++ php-src/ext/openssl/openssl.c Mon Oct 13 07:42:18 2003
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: openssl.c,v 1.52.2.16 2003/09/23 14:52:25 wez Exp $ */
+/* $Id: openssl.c,v 1.52.2.17 2003/10/13 11:42:18 wez Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -1433,7 +1433,7 @@
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;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php