summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 5.4.28php-5.3.28PHP-5.3.28Stanislav Malyshev2013-12-102-3/+3
|
* Fix CVE-2013-6420 - memory corruption in openssl_x509_parseStanislav Malyshev2013-12-104-5/+64
|
* Merge branch 'PHP-5.3' of https://git.php.net/repository/php-src into PHP-5.3Christopher Jones2013-08-191-0/+1
|\ | | | | | | | | * 'PHP-5.3' of https://git.php.net/repository/php-src: fix using wrong buffer pointer
| * fix using wrong buffer pointerStanislav Malyshev2013-08-191-0/+1
|/
* Fix CVE-2013-4073 - handling of certs with null bytesStanislav Malyshev2013-08-134-2/+135
|
* Merge branch 'PHP-5.3' of https://git.php.net/repository/php-src into PHP-5.3Christopher Jones2013-07-222-6/+19
|\ | | | | | | | | | | | | | | # By Johannes Schlüter # Via Christopher Jones (1) and Johannes Schlüter (1) * 'PHP-5.3' of https://git.php.net/repository/php-src: Merge PHP 5.3.27 NEWS add test for bug #65236
| * Merge branch 'PHP-5.3' of https://git.php.net/repository/php-src into PHP-5.3Christopher Jones2013-07-102-6/+19
| |\ |/ / | | | | | | | | * 'PHP-5.3' of https://git.php.net/repository/php-src: Merge PHP 5.3.27 NEWS add test for bug #65236
| * Merge PHP 5.3.27 NEWSJohannes Schlüter2013-07-101-6/+4
| |
| * add test for bug #65236Johannes Schlüter2013-07-101-0/+15
|/
* truncate results at depth of 255 to prevent corruptionRob Richards2013-07-061-40/+50
|
* fix assembly of safe_address() for x86 and x86_64Nuno Lopes2013-07-031-2/+2
|
* Add bison 2.6.4 to the list of supported versionsSebastian Bergmann2013-07-031-1/+1
|
* Update git rules (5.5 is stable, 5.3 sec only)Johannes Schlüter2013-06-201-5/+8
|
* This will be PHP 5.3.28Johannes Schlüter2013-06-193-4/+11
|
* 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
|