Revision tags: php-7.1.22RC1, php-7.3.0beta3, php-7.2.10RC1, php-7.1.21, php-7.2.9, php-7.3.0beta2, php-7.1.21RC1, php-7.3.0beta1, php-7.2.9RC1, php-5.6.37, php-7.1.20, php-7.3.0alpha4, php-7.0.31, php-7.2.8 |
|
#
3890c8bc |
| 09-Jul-2018 |
Kevin Abel |
Fix bug 76596: phpdbg supports display_errors=stderr
|
#
cbc5a141 |
| 30-Jan-2019 |
Christoph M. Becker |
Prepare main branch for PHP 7.2.16
|
#
ef68cd32 |
| 28-Jan-2019 |
ekinhbayar |
Fixed bug #77530: PHP crashes when parsing "(2)::class"
|
#
dc2ffdee |
| 17-Jan-2019 |
Jakub Zelenka |
Fix bug #77390 (feof might hang on TLS streams in case of fragmented TLS records) Simplified version of the fix from Abyl Valg so credit to him.
|
#
73f222d7 |
| 24-Jan-2019 |
Dmitry Stogov |
Fixed bug #77494 (Disabling class causes segfault on member access)
|
#
d978590c |
| 20-Jan-2019 |
Anatol Belski |
Update NEWS [ci skip]
|
#
44fa0b0f |
| 19-Jan-2019 |
Christoph M. Becker |
Fix #77479: imagewbmp() segfaults with very large images We must not proceed working with the Wbmp structure, if it hasn't been allocated.
|
#
32ae7160 |
| 16-Jan-2019 |
Pedro Magalhães |
Fixed bug #76675 Leave a reference to the resource in the php_curl.
|
#
61cfa34e |
| 16-Jan-2019 |
Christoph M. Becker |
Fix #73614: gdImageFilledArc() doesn't properly draw pies The fix for PHP bug 43828[1] changed the algorithm from drawing filled pies from drawing multiple triangles to drawing a single
Fix #73614: gdImageFilledArc() doesn't properly draw pies The fix for PHP bug 43828[1] changed the algorithm from drawing filled pies from drawing multiple triangles to drawing a single polygon. Due to quirks of the filled polygon drawing algorithm, we had to filter out extraneous vertices. This lead, however, to a bug regarding displaced starting and ending points near 90° and 270° degrees, which we fix by reinserting these vertices if they had been removed. This fix is a port of libgd/libgd@1406b1a. [1] <https://bugs.php.net/bug.php?id=43828>
show more ...
|
#
3ad0ebdf |
| 14-Jan-2019 |
Nikita Popov |
Fixed bug #77454
|
#
332b58f8 |
| 27-Dec-2018 |
Kevin Adler |
Fix bug #77361 (configure fails on 64-bit AIX when opcache enabled) In f9048300123, support for GNU Hurd was added to the opcache and the configure check to ensure the opcache knows the
Fix bug #77361 (configure fails on 64-bit AIX when opcache enabled) In f9048300123, support for GNU Hurd was added to the opcache and the configure check to ensure the opcache knows the flock struct layout prior to building was changed check for two cases: BSD layout and Linux layout. All the existing hard-coded cases in ZendAccelerator.h follow these two cases, except for 64-bit AIX. This means that even though building on 64-bit AIX would work, the configure script refuses to continue. Add a new configure check for the 64-bit AIX case and a new compiler definition HAVE_FLOCK_AIX64. Now that all the cases are covered, simplify the ifdef logic around these three HAVE_FLOCK_* macros: - The macOS and the various BSD flavors fall under HAVE_FLOCK_BSD - Linux, HP-UX, GNU Hurd, 32-bit AIX, and SVR4 environments fall under HAVE_FLOCK_LINUX - 64-bit AIX falls under HAVE_FLOCK_AIX64 The only difference between the existing HAVE_FLOCK_LINUX and the hard-coded Linux/HP-UX/Hurd case is that the latter initialized the 5th member to 0, but since the C standard already says that un-initialized members will be initialized to 0, it's effectively the same.
show more ...
|
#
6b4cdbaa |
| 10-Jan-2019 |
Christoph M. Becker |
Fix #73281: imagescale(…, IMG_BILINEAR_FIXED) can cause black border We port the upstream fixes for libgd/libgd#329 and libgd/libgd#224.
|
#
772b1cb2 |
| 10-Jan-2019 |
Christoph M. Becker |
Fix #77272: imagescale() may return image resource on failure `_gdScaleHoriz()` and `_gdScaleVert()` may fail, but don't signal failure since they are void functions. We change that acc
Fix #77272: imagescale() may return image resource on failure `_gdScaleHoriz()` and `_gdScaleVert()` may fail, but don't signal failure since they are void functions. We change that according to upstream libgd. We also remove the unused `Scale()` function, which doesn't exist in upstream libgd either, right away.
show more ...
|
#
5d33024a |
| 10-Jan-2019 |
Nikita Popov |
Fixed bug #77439
|
#
fabade15 |
| 08-Jan-2019 |
Sara Golemon |
Bump for 7.1.27
|
#
3e780d7f |
| 07-Jan-2019 |
Remi Collet |
[ci skip] fix NEWS
|
#
03a630de |
| 07-Jan-2019 |
Remi Collet |
[ci skip] fix NEWS
|
#
9d6c59ee |
| 07-Jan-2019 |
Stanislav Malyshev |
Fix bug #77418 - Heap overflow in utf32be_mbc_to_code
|
#
08bb0ce4 |
| 06-Jan-2019 |
Stanislav Malyshev |
Add NEWS
|
#
25c95752 |
| 06-Jan-2019 |
Stanislav Malyshev |
Add NEWS
|
#
b51eaf41 |
| 06-Jan-2019 |
Stanislav Malyshev |
[ci skip] Add NEWS
|
#
cb009b12 |
| 03-Jan-2019 |
Nikita Popov |
Fixed bug #77273
|
#
7b3f8e74 |
| 02-Jan-2019 |
Anatol Belski |
Fixed bug #75684 In mysqlnd_ext_plugin.h the plugin methods family has no external visibility
|
#
8ebae846 |
| 02-Jan-2019 |
Xinchen Hui |
Fixed bug #77395 (segfault about array_multisort)
|
#
b0cfa28d |
| 31-Dec-2018 |
Christoph M. Becker |
Fix #77391: 1bpp BMPs may fail to be loaded We port the upstream fix[1]. [1] <https://github.com/libgd/libgd/commit/d0859134fcbd8817f87895bd1cb158096568a7a2>
|