rrichards Thu Apr 5 18:08:42 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/openssl openssl.c
Log:
fix win32 build
http://cvs.php.net/viewvc.cgi/php-src/ext/openssl/openssl.c?r1=1.98.2.5.2.31&r2=1.98.2.5.2.32&diff_format=u
Index: php-src/ext/openssl/openssl.c
diff -u php-src/ext/openssl/openssl.c:1.98.2.5.2.31
php-src/ext/openssl/openssl.c:1.98.2.5.2.32
--- php-src/ext/openssl/openssl.c:1.98.2.5.2.31 Thu Apr 5 07:10:07 2007
+++ php-src/ext/openssl/openssl.c Thu Apr 5 18:08:42 2007
@@ -20,7 +20,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: openssl.c,v 1.98.2.5.2.31 2007/04/05 07:10:07 tony2001 Exp $ */
+/* $Id: openssl.c,v 1.98.2.5.2.32 2007/04/05 18:08:42 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -1567,11 +1567,10 @@
if(d2i_PKCS12_bio(bio_in, &p12)) {
if(PKCS12_parse(p12, pass, &pkey, &cert, &ca)) {
-
+ BIO * bio_out;
+
zval_dtor(zout);
array_init(zout);
-
- BIO * bio_out;
bio_out = BIO_new(BIO_s_mem());
if (PEM_write_bio_X509(bio_out, cert)) {
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php