summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* bump to RC3php-5.6.0RC3Ferenc Kovacs2014-07-302-3/+3
|
* Merge branch 'PHP-5.6' into PHP-5.6.0Ferenc Kovacs2014-07-3095-285/+1602
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.6: (164 commits) add missing entry to NEWS add missing entries to NEWS add NEWS block for the next RC NEWS entry for #67713 update the exception message to better match the actual check ReflectionClass::newInstanceWithoutConstructor() should be allowed to instantiate every class except those internal classes with a final __construct() Fixed usage after free Undo inadvertent commit of php_version Corrected patch for bug #60616 Wildcards should only be used in the first name component; fixed comment style Fix bug #60616 (odbc_fetch_into returns junk at end of multi-byte char fields) fix SOAP for uninitialzed object fix NEWS Fix missing type checks in various functions Fix SPL objects initialization checks Add object initialization checks for sqlite3 classes Revert "Fix bug #66568: the second arg for unserialize is optional." as we already reverted the introduction of the second arg. update NEWS Fixed bug #67539 (ArrayIterator use-after-free due to object change during sorting) Fixed Bug #67538 (SPL Iterators use-after-free) ... Conflicts: NEWS
| * add missing entry to NEWSFerenc Kovacs2014-07-301-0/+4
| |
| * add missing entries to NEWSFerenc Kovacs2014-07-301-0/+6
| |
| * add NEWS block for the next RCFerenc Kovacs2014-07-301-1/+3
| |
| * NEWS entry for #67713Ferenc Kovacs2014-07-301-0/+4
| |
| * Merge branch 'newInstanceWithoutConstructor' into PHP-5.6Ferenc Kovacs2014-07-303-4/+9
| |\ | | | | | | | | | | | | | | | * newInstanceWithoutConstructor: update the exception message to better match the actual check ReflectionClass::newInstanceWithoutConstructor() should be allowed to instantiate every class except those internal classes with a final __construct()
| | * update the exception message to better match the actual checkFerenc Kovacs2014-07-303-3/+3
| | |
| | * ReflectionClass::newInstanceWithoutConstructor() should be allowed to ↵Ferenc Kovacs2014-07-303-4/+9
| |/ | | | | | | instantiate every class except those internal classes with a final __construct()
| * Merge branch 'PHP-5.5' into PHP-5.6Dmitry Stogov2014-07-301-1/+4
| |\ | | | | | | | | | | | | * PHP-5.5: Fixed usage after free
| | * Fixed usage after freeDmitry Stogov2014-07-301-1/+4
| | |
| * | Merge branch 'PHP-5.5' into PHP-5.6Keyur Govande2014-07-305-26/+121
| |\ \ | | |/ | | | | | | | | | | | | * PHP-5.5: Undo inadvertent commit of php_version Corrected patch for bug #60616
| | * Merge branch 'PHP-5.4' into PHP-5.5Keyur Govande2014-07-305-26/+121
| | |\ | | | | | | | | | | | | | | | | | | | | * PHP-5.4: Undo inadvertent commit of php_version Corrected patch for bug #60616
| | | * Undo inadvertent commit of php_versionKeyur Govande2014-07-301-0/+1
| | | |
| | | * Corrected patch for bug #60616Keyur Govande2014-07-306-27/+121
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For unixODBC, use ODBC version as defined by it (as of v2.2.14 it is 3.5). This allows us to use newer features like SQL_DESC_OCTET_LENGTH (which returns the number of bytes required to store the data). This fixes the issue in #60616. If the newer version is not available, over-allocate to accomodate 4-byte Unicode characters for CHAR and VARCHAR datatypes (and their Wide counterparts). version. Fixed a couple of failing tests.
| * | | Wildcards should only be used in the first name component; fixed comment styleTjerk Meesters2014-07-291-2/+3
| | | |
| * | | Merge branch 'PHP-5.5' into PHP-5.6Keyur Govande2014-07-282-2/+16
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.5: Fix bug #60616 (odbc_fetch_into returns junk at end of multi-byte char fields)
| | * | Merge branch 'PHP-5.4' into PHP-5.5Keyur Govande2014-07-282-2/+16
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: Fix bug #60616 (odbc_fetch_into returns junk at end of multi-byte char fields)
| | | * Fix bug #60616 (odbc_fetch_into returns junk at end of multi-byte char fields)Keyur Govande2014-07-282-2/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The ODBC extension did not support WVARCHAR. WVARCHAR ends up being handled by the default handler where vallen is set by the driver to the actual bytes needed for the field. If it is larger than default-lrl then the output is corrupted (reading past the buffer) because the return functions don't expect that to happen. The patch add support to handle WVARCHAR just like a regular VARCHAR.
| * | | fix SOAP for uninitialzed objectStanislav Malyshev2014-07-281-1/+3
| | | |
| * | | Merge branch 'PHP-5.5' into PHP-5.6Stanislav Malyshev2014-07-280-0/+0
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.5: fix NEWS
| | * | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2014-07-281-3/+3
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: fix NEWS
| | | * fix NEWSStanislav Malyshev2014-07-281-3/+3
| | | |
| * | | Merge branch 'PHP-5.5' into PHP-5.6Stanislav Malyshev2014-07-285-8/+27
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.5: Fix missing type checks in various functions Conflicts: ext/openssl/openssl.c
| | * | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2014-07-285-10/+33
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: Fix missing type checks in various functions
| | | * Fix missing type checks in various functionsStanislav Malyshev2014-07-275-9/+32
| | | |
| * | | Fix SPL objects initialization checksStanislav Malyshev2014-07-263-23/+178
| | | |
| * | | Add object initialization checks for sqlite3 classesStanislav Malyshev2014-07-261-9/+31
| | | |
| * | | Revert "Fix bug #66568: the second arg for unserialize is optional." as we ↵Ferenc Kovacs2014-07-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | already reverted the introduction of the second arg. This reverts commit aefc8f22b35999624f3a579696cf68b389f41ae8. Conflicts: NEWS
| * | | Merge branch 'PHP-5.5' into PHP-5.6Stanislav Malyshev2014-07-240-0/+0
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | * PHP-5.5: update NEWS Fixed bug #67539 (ArrayIterator use-after-free due to object change during sorting) Fixed Bug #67538 (SPL Iterators use-after-free)
| | * | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2014-07-240-0/+0
| | |\ \ | | | |/ | | | | | | | | | | | | | | | | | | | | * PHP-5.4: update NEWS Fixed bug #67539 (ArrayIterator use-after-free due to object change during sorting) Fixed Bug #67538 (SPL Iterators use-after-free)
| | | * update NEWSStanislav Malyshev2014-07-241-1/+6
| | | |
| | | * Fixed bug #67539 (ArrayIterator use-after-free due to object change during ↵Xinchen Hui2014-07-242-0/+22
| | | | | | | | | | | | | | | | sorting)
| | | * Fixed Bug #67538 (SPL Iterators use-after-free)Xinchen Hui2014-07-242-2/+22
| | | |
| * | | Merge branch 'PHP-5.6' of https://git.php.net/repository/php-src into PHP-5.6Xinchen Hui2014-07-258-11/+49
| |\ \ \
| | * \ \ Merge branch 'PHP-5.5' into PHP-5.6Johannes Schlüter2014-07-241-1/+11
| | |\ \ \
| | * \ \ \ Merge branch 'PHP-5.5' into PHP-5.6Johannes Schlüter2014-07-241-1/+4
| | |\ \ \ \
| | * | | | | Updated NEWS for #67666Tjerk Meesters2014-07-241-0/+1
| | | | | | |
| | * | | | | Fixed #67666 - Subject altName doesn't match wildcardsTjerk Meesters2014-07-241-1/+1
| | | | | | |
| | * | | | | Removed second zval_copy_ctor()Dmitry Stogov2014-07-242-2/+0
| | | | | | |
| | * | | | | Fixed crash on self-referencing constant expression (part of a constant AST)Dmitry Stogov2014-07-243-8/+24
| | | | | | |
| | * | | | | Fixed support for constant arrays in context of "const" statement ↵Dmitry Stogov2014-07-232-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (Zend/tests/constant_expressions_arrays.phpt failed when opcache.protect_memort was set)
| | * | | | | Merge branch 'PHP-5.5' into PHP-5.6Anatol Belski2014-07-211-2/+5
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.5: fix nmake snap when ext name is different in target dll
| | * | | | | | force atoll macro usage on windowsAnatol Belski2014-07-211-0/+1
| | | | | | | |
| | * | | | | | Merge branch 'PHP-5.5' into PHP-5.6Lior Kaplan2014-07-211-0/+4
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.5: Enable $ replacement in exif, ldap, pdo_pgsql and tidy Update NEWS
| | * \ \ \ \ \ \ Merge branch 'PHP-5.5' into PHP-5.6Remi Collet2014-07-201-2/+14
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.5: See bug #67635
| | * | | | | | | | NEWSRemi Collet2014-07-191-0/+2
| | | | | | | | | |
| | * | | | | | | | Merge branch 'PHP-5.5' into PHP-5.6Remi Collet2014-07-191-3/+18
| | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.5: NEWS improve previous, add message during configure Fixed bug #67635 php links to systemd libraries without using pkg-config
| * | \ \ \ \ \ \ \ \ Merge branch 'PHP-5.5' into PHP-5.6Xinchen Hui2014-07-254-6/+53
| |\ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / | |/| | | | | | | / / | | | |_|_|_|_|_|/ / | | |/| | | | | | |
| | * | | | | | | | Add CVE noXinchen Hui2014-07-251-1/+1
| | | |_|_|_|_|/ / | | |/| | | | | |