summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* PHP 5.3.26php-5.3.26PHP-5.3.26Johannes Schlüter2013-06-052-3/+3
|
* Fix NEWSJohannes Schlüter2013-06-051-1/+5
|
* fix CVE-2013-2110 - use correct formula to calculate string sizeStanislav Malyshev2013-06-052-1/+13
|
* PHP 5.3.26RC1php-5.3.26RC1Johannes Schlüter2013-05-223-8/+8
|
* Fixed bug #64895 Integer overflow in SndToJewishRemi Collet2013-05-223-3/+7
|
* fix orderStanislav Malyshev2013-05-211-4/+4
|
* Don't double-quote name of namespaced function.Sara Golemon2013-05-191-1/+1
| | | | | | | | | | | | | ZEND_NS_NAMED_FE(ns, zend_name, name, arg_info) was resulting in a function declaration of: ns\"zend_name"() including the errant quotes. This diff corrects that. There are currently no uses of ZEND_NS_NAMED_FE in core and reason to believe that there are no uses in the wild either.
* Integer overflow in SndToJewish leads to php hangRemi Collet2013-05-212-1/+20
| | | | | | | | AT least in (inputDay is long, metonicCycle is int): metonicCycle = (inputDay + 310) / 6940; So large value give strange (negative) results or php hangs. This is patch already applied in some linux distro.
* entry for #64214Pierre Joye2013-05-171-0/+4
|
* other fix for #64214, unmodified file may not have old fp set, causing other ↵Pierre Joye2013-05-171-4/+5
| | | | possible crashes
* Fix unitialized vars when sql.safe_mode=1Anatol Belski2013-05-151-1/+1
| | | | which can break the subsequent mysqlnd_connect() call
* more check for php_stream_fopen_tmpfile failurePierre Joye2013-05-144-7/+56
|
* php_stream_fopen_tmpfile may file, causing any following stream usage to crashPierre Joye2013-05-141-0/+4
|
* fix heap overflow warnings on win x64 debug crtAnatol Belski2013-05-131-4/+4
|
* Fixed bug #64821 Custom Exceptions crash when internal properties overriddenAnatol Belski2013-05-125-1/+74
| | | | | | If user inherits Exception and overrides the properties to arbitrary data types, or simply doesn't run parent::__construct(), here we go. Just convert everything to the appropriate data type, like Exception::__toString() does.
* PHP 5.3.25 NEWSJohannes Schlüter2013-05-081-3/+1
|
* better fix for bug #64770Anatol Belski2013-05-042-5/+19
|
* Merge branch 'PHP-5.3' of https://git.php.net/push/php-src into PHP-5.3Boris Lytochkin2013-05-033-2/+57
|\ | | | | | | | | * 'PHP-5.3' of https://git.php.net/push/php-src: Fixed bug #64770 stream_select() fails with pipes
| * Fixed bug #64770 stream_select() fails with pipesAnatol Belski2013-05-033-2/+57
|/ | | | returned by proc_open() on Windows x64
* Merge branch 'PHP-5.3' of https://git.php.net/push/php-src into PHP-5.3Boris Lytochkin2013-05-0345-693/+1051
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 'PHP-5.3' of https://git.php.net/push/php-src: (39 commits) NEWS From code coverity scan, syscall return value must be check. fix more resource leaks From code coverity scan - fix some memory leak - fix some resources leak (fd) - create fpm_worker_pool_free (shared use) - possible null dref (wp->user and wp->home can be null) fixed size array cannot be null use limit_extensions as we use security_limit_extensions later (free) unused variable fix possible null deref (detected by code coverity scan) Also fixed bug #64726 in 5.3 Fix memory realted to #64726 Fix Test Bug #64714 PHP 5.3.26 this will be Fix NEWS Fix bug #64458 (dns_get_record result with string of length -1) Fixed incorrect check. SEND_REF may be executed before DO_FCALL when EX(function_state).function is not yet set to the calling function. Fixed stream_socket_pair() on Windows x64 and - Updated to version 2013.3 (2013c) lower the limit, should fit in a byte updated lib versions allow lcov 1.10 ...
| * NEWSRemi Collet2013-05-031-0/+5
| |
| * From code coverity scan, syscall return value must be check.Remi Collet2013-05-034-4/+12
| | | | | | | | | | | | | | | | To not alter current behaviour, we simply log the problem, so, if it occurs, the message will give explanation. This are only warning as they don't block the server, but such fail can explain strange (not expected) behaviour later.
| * fix more resource leaksRemi Collet2013-05-022-1/+6
| |
| * From code coverity scanRemi Collet2013-05-023-5/+27
| | | | | | | | | | | | | | - fix some memory leak - fix some resources leak (fd) - create fpm_worker_pool_free (shared use) - possible null dref (wp->user and wp->home can be null)
| * fixed size array cannot be nullRemi Collet2013-05-021-6/+6
| |
| * use limit_extensions as we use security_limit_extensions later (free)Remi Collet2013-05-021-2/+2
| |
| * unused variableRemi Collet2013-05-021-1/+1
| |
| * fix possible null deref (detected by code coverity scan)Remi Collet2013-05-021-102/+106
| |
| * Also fixed bug #64726 in 5.3Xinchen Hui2013-04-273-3/+7
| |
| * Fix memory realted to #64726Xinchen Hui2013-04-272-0/+24
| |
| * Fix Test Bug #64714Matt Ficken2013-04-251-0/+5
| |
| * PHP 5.3.26 this will beJohannes Schlüter2013-04-253-4/+8
| |
| * Fix NEWSJohannes Schlüter2013-04-251-6/+6
| |
| * Fix bug #64458 (dns_get_record result with string of length -1)Stanislav Malyshev2013-04-232-1/+2
| |
| * Fixed incorrect check. SEND_REF may be executed before DO_FCALL when ↵Dmitry Stogov2013-04-232-3/+9
| | | | | | | | EX(function_state).function is not yet set to the calling function.
| * Fixed stream_socket_pair() on Windows x64 andAnatol Belski2013-04-223-16/+41
| | | | | | | | improved errorhandling in the socketpair() implementation.
| * - Updated to version 2013.3 (2013c)Derick Rethans2013-04-221-441/+469
| |
| * lower the limit, should fit in a byteAndrey Hristov2013-04-191-1/+1
| |
| * updated lib versionsAnatol Belski2013-04-171-17/+17
| |
| * allow lcov 1.10Nuno Lopes2013-04-131-1/+1
| |
| * Merge branch 'PHP-5.3' of git.php.net:php-src into PHP-5.3Anatol Belski2013-04-103-2/+15
| |\
| | * add external 2.1 detection and fix gd_compat for 2.1+Pierre Joye2013-04-103-2/+15
| | |
| * | Fixed bug #64342 ZipArchive::addFile() has to check for file existenceAnatol Belski2013-04-104-0/+90
| |/
| * PHP 5.3.24 release dateJohannes Schlüter2013-04-101-5/+1
| |
| * fix possible NULL derefPierre Joye2013-04-091-2/+4
| |
| * fix null derefPierre Joye2013-04-091-1/+2
| |
| * Fixed bugs #47675 and #64577 (fd leak on Solaris)Rasmus Lerdorf2013-04-042-2/+2
| |
| * no tab hereXinchen Hui2013-04-041-1/+1
| |
| * Fixed bug #64578 (debug_backtrace in set_error_handler corrupts zend heap: ↵Xinchen Hui2013-04-043-3/+22
| | | | | | | | segfault)
| * Fix testXinchen Hui2013-04-011-2/+1
| |