summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* set release versionsphp-7.0.13PHP-7.0.13Anatol Belski2016-11-082-3/+3
|
* update NEWSAnatol Belski2016-11-081-1/+13
|
* Merge branch 'PHP-5.6' into PHP-7.0Anatol Belski2016-11-081-0/+1
| | | | | | | * PHP-5.6: fix memory leak (cherry picked from commit e87daf363b5eb2965a2cb4dec5427a9b83ce88e2)
* Fixed bug #73418 Integer Overflow in "_php_imap_mail" leads to crashAnatol Belski2016-11-081-1/+1
| | | | | (cherry picked from commit 99b242a6d093bca1f64084866b4491061de57553) (cherry picked from commit de643586dee986ff16c0a6be44813687786aa781)
* Fix #72696: imagefilltoborder stackoverflow on truecolor imagesChristoph M. Becker2016-11-082-1/+15
| | | | | | | | | We must not allow negative color values be passed to gdImageFillToBorder(), because that can lead to infinite recursion since the recursion termination condition will not necessarily be met. (cherry picked from commit 863d37ea66d5c960db08d6f4a2cbd2518f0f80d1) (cherry picked from commit 5693474997b5a804be307583fb7bc3cfcdd50aec)
* Fix #72482: Ilegal write/read access caused by gdImageAALine overflowChristoph M. Becker2016-11-084-48/+43
| | | | | | | | | | | Instead of rolling our own bounds check we use clip_1d() as it's done in gdImageLine() and in external libgd. We must not pass the image width and height, respectively, but rather the largest ordinate value that is allowed to be accessed, i.e. width-1 and height-1, respectively. (cherry picked from commit 6499581af76cfe986e12330faabb3a7c36d45ffc) (cherry picked from commit 1b5543b8ab22b85c14546649057475fce2083fbd)
* remove unreferenced var came in with mergeAnatol Belski2016-11-081-2/+0
| | | | (cherry picked from commit 6b21c28b0e82d760f0c3c4da89dae8d2fb685e1b)
* Fix bug #73331 - do not try to serialize/unserialize objects wddx can not handleStanislav Malyshev2016-11-085-22/+51
| | | | | | | | | | | | Proper soltion would be to call serialize/unserialize and deal with the result, but this requires more work that should be done by wddx maintainer (not me). (cherry picked from commit 6045de69c7dedcba3eadf7c4bba424b19c81d00d) Conflicts: ext/wddx/wddx.c (cherry picked from commit 8c67460a10865f53435c705d08bbc2d60a49f781)
* Fixed build failure introduced by PR #2158Bob Weinand2016-11-071-3/+2
| | | | | Note: AC_TRY_LINK interprets the source as part of a main function, ending up with int main() { /* ... */ int main() { /* ... */ } ; return 0; } here - Using AC_LINK_IFELSE with AC_LANG_SOURCE directly instead. (cherry picked from commit 36527eccbb793ef15f828ffa4261d9a862144f07)
* fix versionphp-7.0.13RC1Anatol Belski2016-10-251-1/+1
|
* set versionsAnatol Belski2016-10-253-4/+4
|
* Updated to version 2016.8 (2016h)Derick Rethans2016-10-241-456/+458
|
* Empty mergeDerick Rethans2016-10-240-0/+0
|\
| * Updated to version 2016.8 (2016h)Derick Rethans2016-10-241-456/+458
| |
* | Fix test outputNikita Popov2016-10-231-0/+2
| | | | | | | | Changed due to eca84946a4e7269d59ea2d79b5f42117de89ae74.
* | Fixed bug #73350 (Exception::__toString() cause circular references)Xinchen Hui2016-10-224-3/+33
| |
* | Fix bug #71241: array_replace_recursive mutates ref paramsAdam Saponara2016-10-203-12/+41
| | | | | | | | | | `array_replace_recursive` can sometimes mutate its params if references are nested within. This differs from the PHP 5 behavior.
* | Add php_random_int internal APILeigh2016-10-202-24/+45
| | | | | | | | This is the internal API compliment to `php_random_bytes`
* | news entry for #pr 2152Joe Watkins2016-10-201-0/+2
| |
* | Merge branch 'pull-request/2152' into PHP-7.0Joe Watkins2016-10-203-1/+56
|\ \
| * | soap #69137 - Invert logic to be correctKeith Smiley2016-10-132-2/+7
| | |
| * | soap #69137 - Fix SSL verify when using a proxyKeith Smiley2016-10-033-1/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | Name verification was failing because the OpenSSL extension was picking the proxy server's address when guessing which name to compare to the SSL certificate. This scenario is already handled for stream wrappers in http_fopen_wrapper.c. This patch applies the same fix to the SOAP extension: when a proxy is used, set peer_name explicitly on the stream context.
* | | update NEWSAnatol Belski2016-10-181-0/+1
| | |
* | | Fixed bug #73329 (Float)"Nano" == NANAnatol Belski2016-10-182-0/+22
| | | | | | | | | | | | | | | | | | | | | The special cases (float)"inf", etc. were never intended and are caused by the updated strtod lib. While it might be nice as an easy way to produce Inf and NaN special values, it was never documented and cause BC breaches.
* | | sync NEWSAnatol Belski2016-10-181-1/+0
| | | | | | | | | | | | 48f1a178 is reverted
* | | Fixed bug #73338 (Exception thrown from error handler may crash)Bob Weinand2016-10-184-105/+271
| | |
* | | Merge branch 'PHP-5.6' into PHP-7.0Dmitry Stogov2016-10-183-0/+17
|\ \ \ | | |/ | |/| | | | | | | * PHP-5.6: Fixed bug #73337 (try/catch not working with two exceptions inside a same operation)
| * | Fixed bug #73337 (try/catch not working with two exceptions inside a same ↵Dmitry Stogov2016-10-183-0/+19
| | | | | | | | | | | | operation)
* | | Revert "Fix bug #47890 #73215 uniqid() should use better random source"Joe Watkins2016-10-181-19/+2
| | | | | | | | | | | | This reverts commit 48f1a17886d874dc90867c669481804de90509e8.
* | | Update NEWSYasuo Ohgaki2016-10-181-0/+1
| | |
* | | Fix bug #47890 #73215 uniqid() should use better random sourceYasuo Ohgaki2016-10-181-2/+19
| | |
* | | Merge branch 'PHP-5.6' into PHP-7.0Christoph M. Becker2016-10-175-4/+40
|\ \ \ | |/ / | | | | | | We also use ZEND_LONG_(MAX|MIN) now instead of LONG_(MAX|MIN).
| * | Fix #73333: 2147483647 is fetched as stringChristoph M. Becker2016-10-175-4/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | We return all integers that can be represented as such by PHP as integers, and only those that exceed the possible range as strings. On builds which represent integers with 64 bits, the range check is unnecessary and might cause code checkers to complain, so we skip this special casing via the preprocessor according to <http://git.php.net/?p=php-src.git;a=commit;h=99d087e5>.
* | | sync NEWSAnatol Belski2016-10-171-2/+0
| | |
* | | Merge branch 'pull-request/1817'Joe Watkins2016-10-171-0/+21
| | |
* | | Merge branch 'pull-request/1816'Joe Watkins2016-10-171-0/+23
| | |
* | | Merge branch 'pull-request/1814'Joe Watkins2016-10-171-0/+77
| | |
* | | Merge branch 'pull-request/1808'Joe Watkins2016-10-171-0/+29
| | |
* | | Merge branch 'pull-request/2097'Joe Watkins2016-10-171-2/+4
| | |
* | | news entry for pr #2158Joe Watkins2016-10-171-0/+1
| | |
* | | Merge branch 'pull-request/2158'Joe Watkins2016-10-171-28/+26
| | |
* | | Fixed bug #71148 (Bind reference overwritten on PHP 7)Christopher Jones2016-10-179-33/+264
| | |
* | | Fixed bug #71234 (INI files are loaded even invoked as phpdbg -n --version)Bob Weinand2016-10-162-34/+51
| | |
* | | Fixed bug #70776 (Simple SIGINT does not have any effect)Bob Weinand2016-10-162-0/+5
| | |
* | | sync NEWSAnatol Belski2016-10-141-0/+27
| | |
* | | bump ext/zip versionRemi Collet2016-10-141-1/+1
| | |
* | | Fix memory leak when compiling files in phpdbgBob Weinand2016-10-141-2/+2
| | |
* | | Merge branch 'PHP-5.6' into PHP-7.0Remi Collet2016-10-141-1/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-5.6: use zend_error instead of zend_error_noreturn
| * | use zend_error instead of zend_error_noreturnRemi Collet2016-10-141-1/+1
| | |
* | | Merge branch 'PHP-5.6' into PHP-7.0Ferenc Kovacs2016-10-140-0/+0
|\ \ \ | |/ /