summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* PHP 5.3.27php-5.3.27PHP-5.3.27Johannes Schlüter2013-07-103-4/+7
|
* add test for bug #65236Johannes Schlüter2013-07-101-0/+15
|
* truncate results at depth of 255 to prevent corruptionRob Richards2013-07-101-40/+50
|
* fix assembly of safe_address() for x86 and x86_64Nuno Lopes2013-07-101-2/+2
|
* PHP 5.3.27RC1php-5.3.27RC1Johannes Schlüter2013-06-193-4/+4
|
* Fixed bug #63186 (compile failure on netbsd)Matteo Beccati2013-06-142-3/+12
|
* ensure the error_reporting level to get expected noticeAnatol Belski2013-06-121-0/+2
|
* fixed testsAnatol Belski2013-06-112-4/+4
|
* missing tests for bug #53437Anatol Belski2013-06-115-0/+251
|
* missing colonAnatol Belski2013-06-101-1/+1
|
* Backported the fix for bug #53437Anatol Belski2013-06-1012-40/+698
|
* Fixed test scriptDmitry Stogov2013-06-101-1/+1
|
* Fixed bug #64997 (Segfault while using RecursiveIteratorIterator on 64-bits ↵Xinchen Hui2013-06-092-7/+18
| | | | systems)
* Fixed bug #64966 (segfault in zend_do_fcall_common_helper_SPEC)Xinchen Hui2013-06-094-0/+36
|
* Fixed bug #64934 Apache2 TS crash with get_browser()Anatol Belski2013-06-062-4/+18
| | | | | | In favour of reading the browscap.ini into a true global var only once in MINIT, the price for that is to deep copy the any data from it.
* Add NEWS for PHP 5.3.26Johannes Schlüter2013-06-051-3/+1
|
* Fixed bug #64960 (Segfault in gc_zval_possible_root)Xinchen Hui2013-06-053-4/+44
|
* fix CVE-2013-2110 - use correct formula to calculate string sizeStanislav Malyshev2013-06-043-1/+17
|
* Clean up leftover test filesMatteo Beccati2013-06-021-3/+5
|
* Fixed bug #64609 (pg_convert enum type support)Matteo Beccati2013-06-023-5/+69
|
* Fixed bug #62857 (bytea test failures)Matteo Beccati2013-06-014-1/+7
| | | | | | | | | | | Postgres 9.1+ test fixes. Tests were failing due to the default standard_conforming_strings GUC being changed to on. Also the pg_escape_bytea test was encoding the data before estabilishing a connection, thus falling back to the old escaping type which isn't properly handled by the backend when using a default configuration. I haven't updated the NEWS file as it's just test fixes.
* Merge branch 'pull-request/309' into PHP-5.3Matteo Beccati2013-05-314-5/+110
|\
| * NEWSMatteo Beccati2013-05-311-1/+7
| |
| * Slightly edited tests and fix for bug #62024Matteo Beccati2013-05-312-5/+8
| |
| * Fixed bug #62024 (unable to run consecutive prepared querys with null values)Matheus Degiovani2013-05-312-3/+54
| | | | | | | | Credits to james@kenjim.com for the patch.
| * Fixed bug #64037 (wrong value returned when using a negative numeric field ↵Matheus Degiovani2013-05-312-1/+46
|/ | | | equal to the scale)
* Fixed Bug #64949 (Buffer overflow in _pdo_pgsql_error)Remi Collet2013-05-312-1/+4
| | | | | | | | | | There is a lot of call such as: pdo_pgsql_error(dbh, PGRES_FATAL_ERROR, "Copy command failed"); Where the 3rd paramater is a error message string where a sqlstate (5 chars) is expected. This cause a segfault in copy_from.phpt and copy_to.phpt. This is only a sanity check to avoid buffer overflow, but obviously this calls need to be fixed (using NULL or a correct sqlstate).
* Fixed incorrect argument numberDmitry Stogov2013-05-291-1/+1
|
* This will be PHP 5.3.27Johannes Schlüter2013-05-223-8/+12
|
* 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
| |