wez Mon Oct 13 07:43:12 2003 EDT
Modified files:
/php-src/ext/openssl openssl.c
Log:
Fix unintialized variable.
Patch by Joe Orton.
Index: php-src/ext/openssl/openssl.c
diff -u php-src/ext/openssl/openssl.c:1.83 php-src/ext/openssl/openssl.c:1.84
--- php-src/ext/openssl/openssl.c:1.83 Tue Sep 23 15:29:33 2003
+++ php-src/ext/openssl/openssl.c Mon Oct 13 07:43:11 2003
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: openssl.c,v 1.83 2003/09/23 19:29:33 sniper Exp $ */
+/* $Id: openssl.c,v 1.84 2003/10/13 11:43:11 wez Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -1477,7 +1477,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