summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* PHP 5.3.21php-5.3.21PHP-5.3.21Johannes Schlüter2013-01-163-4/+4
|
* PHP 5.3.21RC1php-5.3.21RC1Johannes Schlüter2013-01-033-4/+4
|
* Happy New YearXinchen Hui2013-01-0196-98/+98
|
* Happy New Year~Xinchen Hui2013-01-01657-665/+665
|
* Revert "Remove a useless memory write in zend_llist_del_element"Pierrick Charron2012-12-261-1/+3
| | | | | This reverts commit fad960a4045da86cdbd8308a165ffc47892f05b9 as required by Stas and Christopher
* Remove a useless memory write in zend_llist_del_elementPierrick Charron2012-12-251-3/+1
| | | | | The zend_llist_element *next pointer is not necessary and removing it will also remove a write on memory
* Fixed segfault due to libcurl connection cachingPierrick Charron2012-12-223-0/+81
| | | | | | | | | | | | Libcurl is doing connection caching. When easy handle is cleaned up, if the handle was previously used by the curl_multi_api, the connection remains open un the curl multi handle is cleaned up. Some protocols are sending content like the FTP one, and libcurl try to use the WRITEFUNCTION or the HEADERFUNCTION. Since structures used in those callback are freed, we need to use an other callback to which avoid segfaults. Libcurl commit d021f2e8a00 fix this issue and should be part of 7.28.2
* Update NEWS filePierrick Charron2012-12-211-0/+4
|
* Fixed bug #63352 (Can't enable hostname validation when using curl stream ↵Pierrick Charron2012-12-211-2/+2
| | | | wrappers)
* CURL >= 7.28.0 no longer support value 1 for CURLOPT_SSL_VERIFYHOST)Pierrick Charron2012-12-213-1/+78
| | | | Fixed bug #63795
* Fix test to work on every libcurl versionPierrick Charron2012-12-211-4/+4
|
* - Fixed typo on "SKIPIF" (causing make test to abort on some systems)Felipe Pena2012-12-201-1/+1
|
* Fixed bug #55438 (Curlwapper is not sending http header randomly)Pierrick Charron2012-12-193-13/+14
| | | | | | Since curl multi is used, it sometime happen that the resource is freed before the curl multi really execute the query. The patch will store the headers slist in the curlstream handle and free it only when the stream will be closed
* Update release dateJohannes Schlüter2012-12-191-3/+1
|
* dos2unix & skip on connect failXinchen Hui2012-12-171-33/+34
|
* Fix failed testXinchen Hui2012-12-171-1/+1
|
* Need connect.inc hereRasmus Lerdorf2012-12-131-0/+1
|
* Fix broken testRasmus Lerdorf2012-12-131-1/+1
| | | | | Need to use the configured connection parameters here. We can't assume the test user has access.
* Fix broken testRasmus Lerdorf2012-12-131-1/+1
| | | | This was missing a %s for the path here
* Fix Bug #63762 Sigsegv when Exception::$trace is changed by userJohannes Schlüter2012-12-133-15/+96
|
* MFHXinchen Hui2012-12-131-1/+1
|
* Merge branch 'PHP-5.3' of git.php.net:/php-src into PHP-5.3Johannes Schlüter2012-12-102-0/+4
|\
| * Fixed bug #63726 (Memleak with static properties and internal/user classes)Xinchen Hui2012-12-103-0/+6
| |
* | Fix typoJohannes Schlüter2012-12-101-1/+1
|/
* skip 32-bit OSXinchen Hui2012-12-101-0/+4
|
* Merge branch 'PHP-5.3' of git.php.net:php-src into PHP-5.3Xinchen Hui2012-12-108-7/+39
|\
| * this will become PHP 5.3.21Johannes Schlüter2012-12-053-4/+8
| |
| * Two tests deactivated until #63688 was fixedAnatoliy Belsky2012-12-052-0/+8
| |
| * NEWSRemi Collet2012-12-011-0/+4
| |
| * Fixed Bug #63435 Datetime::format('u') sometimes wrong by 1 microsecondRemi Collet2012-12-013-3/+19
| | | | | | | | | | | | | | When storing '015700' microseconds in a Datetime object, Datetime::format('u') returns '015699' Already known per bug45554 reproducer (also fixed).
* | Need more that 2G memoryXinchen Hui2012-12-101-2/+2
|/
* Fixed bug #63377 (Segfault on output buffer)Xinchen Hui2012-11-303-1/+61
|
* FormatXinchen Hui2012-11-301-2/+2
|
* Fixed bug #63398 (Segfault when polling closed link)Xinchen Hui2012-11-303-2/+45
|
* Fixed bug #63271 (SOAP wsdl cache is not enabled after initial requests)Dmitry Stogov2012-11-292-21/+6
|
* Fixed bug #63635 (Segfault in gc_collect_cycles)Dmitry Stogov2012-11-293-2/+63
|
* Fixed Bug #63581 Possible buffer overflowRemi Collet2012-11-282-3/+7
| | | | | | | | | In fpm-log, possible buffer overflow. Check for length is done at the beginning of the loop, so is not done when overflow occurs on the last loop (len = 1024 or 1025). (ack from fat). This issue where found from by static code analysis tool and, so, I can't provide any reproducer.
* Fixed Bug #63581 Possible null dereferenceRemi Collet2012-11-281-2/+6
| | | | | | | | Possible NULL dereference when trying to delete the single item of a list (ack from fat). This issues where found from by static code analysis tool and, so, I can't provide any reproducer.
* Merge branch 'PHP-5.3' of git.php.net:php-src into PHP-5.3Remi Collet2012-11-2810-109/+84
|\ | | | | | | | | | | | | * 'PHP-5.3' of git.php.net:php-src: Fixed bug #63590 Fileinfo delivers ifferent results in TS and NTS under Windows This test isn't supposed to pass on windows Fixed Bug #63614 (Fatal error on Reflection)
| * Fixed bug #63590 Fileinfo delivers ifferent results in TS and NTS under WindowsAnatoliy Belsky2012-11-277-107/+29
| |
| * This test isn't supposed to pass on windowsAnatoliy Belsky2012-11-271-1/+6
| |
| * Fixed Bug #63614 (Fatal error on Reflection)Xinchen Hui2012-11-273-1/+49
|/
* add unit test for bug 63126Remi Collet2012-11-241-0/+52
|
* NEWSRemi Collet2012-11-241-0/+2
|
* Fixed Bug #63126 DISABLE_AUTHENTICATOR ignores arrayRemi Collet2012-11-241-1/+1
|
* Backported the fix for bug #63248 from 5.4+Anatoliy Belsky2012-11-234-114/+144
|
* Fixed test for bug #63297Anatoliy Belsky2012-11-221-0/+3
|
* PHP 5.3.19Johannes Schlüter2012-11-211-7/+2
|
* Fixed bug #63468 (wrong called method as callback with inheritance)Dmitry Stogov2012-11-203-1/+33
|
* Merge branch 'PHP-5.3' of https://git.php.net/repository/php-src into PHP-5.3Christopher Jones2012-11-186-1368/+1397
|\ | | | | | | | | | | * 'PHP-5.3' of https://git.php.net/repository/php-src: Regenerate Zend ini scanner Fixed bug #63512 parse_ini_file() with INI_SCANNER_RAW removes quotes from value