pajoye Sat, 18 Dec 2010 12:51:23 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=306430
Log:
- NEWS update and test related to the NULL poisoning recent fixes
Changed paths:
U php/php-src/branches/PHP_5_3/NEWS
A php/php-src/branches/PHP_5_3/ext/soap/tests/error_handler.phpt
Modified: php/php-src/branches/PHP_5_3/NEWS
===================================================================
--- php/php-src/branches/PHP_5_3/NEWS 2010-12-18 12:08:50 UTC (rev 306429)
+++ php/php-src/branches/PHP_5_3/NEWS 2010-12-18 12:51:23 UTC (rev 306430)
@@ -59,7 +59,13 @@
- PHP-FPM SAPI:
. Fixed bug #53527 (php-fpm --test doesn't set a valuable return value).
(fat)
-
+
+- Soap Extension:
+ . Fixed possible crash introduced by the NULL poisoning patch (Mateusz
Kocielski, Pierre)
+
+- Sqlite Extension:
+ . Fixed memory leaked introduced by the NULL poisoning patch (Mateusz
Kocielski, Pierre)
+
- SPL extension:
. Fixed bug #53515 (property_exists incorrect on ArrayObject null and 0
values). (Felipe)
@@ -67,11 +73,13 @@
- Streams:
. Implemented FR #26158 (open arbitrary file descriptor with fopen).
(Gustavo)
+- Xsl Extension:
+ . Fixed memory leaked introduced by the NULL poisoning patch (Mateusz
Kocielski, Pierre)
+
- Zip extension
. Fixed bug #53568 (swapped memset arguments in struct initialization).
(crrodriguez at opensuse dot org)
-
09 Dec 2010, PHP 5.3.4
- Upgraded bundled Sqlite3 to version 3.7.3. (Ilia)
- Upgraded bundled PCRE to version 8.10. (Ilia)
Added: php/php-src/branches/PHP_5_3/ext/soap/tests/error_handler.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/soap/tests/error_handler.phpt
(rev 0)
+++ php/php-src/branches/PHP_5_3/ext/soap/tests/error_handler.phpt
2010-12-18 12:51:23 UTC (rev 306430)
@@ -0,0 +1,17 @@
+--TEST--
+Bug #46760 (SoapClient doRequest fails when proxy is used)
+--SKIPIF--
+<?php require_once('skipif.inc');
+if (!extension_loaded('sqlite')) die('skip squilite extension not available');
+?>
+--FILE--
+<?php
+echo "blllllllllaaaaaaa\n";
+$var475 = sqlite_factory("\x00");
+$var147 = use_soap_error_handler();
+$var477 = flock(false,false);dump($client->_proxy_port);
+
+echo "OK";
+?>
+--EXPECT--
+OK
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php