Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | set release versionsphp-7.0.13PHP-7.0.13 | Anatol Belski | 2016-11-08 | 2 | -3/+3 |
| | |||||
* | update NEWS | Anatol Belski | 2016-11-08 | 1 | -1/+13 |
| | |||||
* | Merge branch 'PHP-5.6' into PHP-7.0 | Anatol Belski | 2016-11-08 | 1 | -0/+1 |
| | | | | | | | * PHP-5.6: fix memory leak (cherry picked from commit e87daf363b5eb2965a2cb4dec5427a9b83ce88e2) | ||||
* | Fixed bug #73418 Integer Overflow in "_php_imap_mail" leads to crash | Anatol Belski | 2016-11-08 | 1 | -1/+1 |
| | | | | | (cherry picked from commit 99b242a6d093bca1f64084866b4491061de57553) (cherry picked from commit de643586dee986ff16c0a6be44813687786aa781) | ||||
* | Fix #72696: imagefilltoborder stackoverflow on truecolor images | Christoph M. Becker | 2016-11-08 | 2 | -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 overflow | Christoph M. Becker | 2016-11-08 | 4 | -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 merge | Anatol Belski | 2016-11-08 | 1 | -2/+0 |
| | | | | (cherry picked from commit 6b21c28b0e82d760f0c3c4da89dae8d2fb685e1b) | ||||
* | Fix bug #73331 - do not try to serialize/unserialize objects wddx can not handle | Stanislav Malyshev | 2016-11-08 | 5 | -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 #2158 | Bob Weinand | 2016-11-07 | 1 | -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.13RC1 | Anatol Belski | 2016-10-25 | 1 | -1/+1 |
| | |||||
* | set versions | Anatol Belski | 2016-10-25 | 3 | -4/+4 |
| | |||||
* | Updated to version 2016.8 (2016h) | Derick Rethans | 2016-10-24 | 1 | -456/+458 |
| | |||||
* | Empty merge | Derick Rethans | 2016-10-24 | 0 | -0/+0 |
|\ | |||||
| * | Updated to version 2016.8 (2016h) | Derick Rethans | 2016-10-24 | 1 | -456/+458 |
| | | |||||
* | | Fix test output | Nikita Popov | 2016-10-23 | 1 | -0/+2 |
| | | | | | | | | Changed due to eca84946a4e7269d59ea2d79b5f42117de89ae74. | ||||
* | | Fixed bug #73350 (Exception::__toString() cause circular references) | Xinchen Hui | 2016-10-22 | 4 | -3/+33 |
| | | |||||
* | | Fix bug #71241: array_replace_recursive mutates ref params | Adam Saponara | 2016-10-20 | 3 | -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 API | Leigh | 2016-10-20 | 2 | -24/+45 |
| | | | | | | | | This is the internal API compliment to `php_random_bytes` | ||||
* | | news entry for #pr 2152 | Joe Watkins | 2016-10-20 | 1 | -0/+2 |
| | | |||||
* | | Merge branch 'pull-request/2152' into PHP-7.0 | Joe Watkins | 2016-10-20 | 3 | -1/+56 |
|\ \ | |||||
| * | | soap #69137 - Invert logic to be correct | Keith Smiley | 2016-10-13 | 2 | -2/+7 |
| | | | |||||
| * | | soap #69137 - Fix SSL verify when using a proxy | Keith Smiley | 2016-10-03 | 3 | -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 NEWS | Anatol Belski | 2016-10-18 | 1 | -0/+1 |
| | | | |||||
* | | | Fixed bug #73329 (Float)"Nano" == NAN | Anatol Belski | 2016-10-18 | 2 | -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 NEWS | Anatol Belski | 2016-10-18 | 1 | -1/+0 |
| | | | | | | | | | | | | 48f1a178 is reverted | ||||
* | | | Fixed bug #73338 (Exception thrown from error handler may crash) | Bob Weinand | 2016-10-18 | 4 | -105/+271 |
| | | | |||||
* | | | Merge branch 'PHP-5.6' into PHP-7.0 | Dmitry Stogov | 2016-10-18 | 3 | -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 Stogov | 2016-10-18 | 3 | -0/+19 |
| | | | | | | | | | | | | operation) | ||||
* | | | Revert "Fix bug #47890 #73215 uniqid() should use better random source" | Joe Watkins | 2016-10-18 | 1 | -19/+2 |
| | | | | | | | | | | | | This reverts commit 48f1a17886d874dc90867c669481804de90509e8. | ||||
* | | | Update NEWS | Yasuo Ohgaki | 2016-10-18 | 1 | -0/+1 |
| | | | |||||
* | | | Fix bug #47890 #73215 uniqid() should use better random source | Yasuo Ohgaki | 2016-10-18 | 1 | -2/+19 |
| | | | |||||
* | | | Merge branch 'PHP-5.6' into PHP-7.0 | Christoph M. Becker | 2016-10-17 | 5 | -4/+40 |
|\ \ \ | |/ / | | | | | | | We also use ZEND_LONG_(MAX|MIN) now instead of LONG_(MAX|MIN). | ||||
| * | | Fix #73333: 2147483647 is fetched as string | Christoph M. Becker | 2016-10-17 | 5 | -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 NEWS | Anatol Belski | 2016-10-17 | 1 | -2/+0 |
| | | | |||||
* | | | Merge branch 'pull-request/1817' | Joe Watkins | 2016-10-17 | 1 | -0/+21 |
| | | | |||||
* | | | Merge branch 'pull-request/1816' | Joe Watkins | 2016-10-17 | 1 | -0/+23 |
| | | | |||||
* | | | Merge branch 'pull-request/1814' | Joe Watkins | 2016-10-17 | 1 | -0/+77 |
| | | | |||||
* | | | Merge branch 'pull-request/1808' | Joe Watkins | 2016-10-17 | 1 | -0/+29 |
| | | | |||||
* | | | Merge branch 'pull-request/2097' | Joe Watkins | 2016-10-17 | 1 | -2/+4 |
| | | | |||||
* | | | news entry for pr #2158 | Joe Watkins | 2016-10-17 | 1 | -0/+1 |
| | | | |||||
* | | | Merge branch 'pull-request/2158' | Joe Watkins | 2016-10-17 | 1 | -28/+26 |
| | | | |||||
* | | | Fixed bug #71148 (Bind reference overwritten on PHP 7) | Christopher Jones | 2016-10-17 | 9 | -33/+264 |
| | | | |||||
* | | | Fixed bug #71234 (INI files are loaded even invoked as phpdbg -n --version) | Bob Weinand | 2016-10-16 | 2 | -34/+51 |
| | | | |||||
* | | | Fixed bug #70776 (Simple SIGINT does not have any effect) | Bob Weinand | 2016-10-16 | 2 | -0/+5 |
| | | | |||||
* | | | sync NEWS | Anatol Belski | 2016-10-14 | 1 | -0/+27 |
| | | | |||||
* | | | bump ext/zip version | Remi Collet | 2016-10-14 | 1 | -1/+1 |
| | | | |||||
* | | | Fix memory leak when compiling files in phpdbg | Bob Weinand | 2016-10-14 | 1 | -2/+2 |
| | | | |||||
* | | | Merge branch 'PHP-5.6' into PHP-7.0 | Remi Collet | 2016-10-14 | 1 | -1/+1 |
|\ \ \ | |/ / | | | | | | | | | | * PHP-5.6: use zend_error instead of zend_error_noreturn | ||||
| * | | use zend_error instead of zend_error_noreturn | Remi Collet | 2016-10-14 | 1 | -1/+1 |
| | | | |||||
* | | | Merge branch 'PHP-5.6' into PHP-7.0 | Ferenc Kovacs | 2016-10-14 | 0 | -0/+0 |
|\ \ \ | |/ / |