#
12db8b90 |
| 05-Aug-2020 |
David Carlier |
Fix iov_base pointer type for illumos These systems has two versions of the iovec interface dependent on compiler flags passed, the legacy version causing little build issue. Cl
Fix iov_base pointer type for illumos These systems has two versions of the iovec interface dependent on compiler flags passed, the legacy version causing little build issue. Closes GH-5939.
show more ...
|
Revision tags: php-7.3.13RC1, php-7.2.26RC1, php-7.4.0, php-7.2.25, php-7.3.12, php-7.4.0RC6, php-7.3.12RC1, php-7.2.25RC1, php-7.4.0RC5, php-7.1.33, php-7.2.24, php-7.3.11, php-7.4.0RC4 |
|
#
e2a6bf48 |
| 09-Oct-2019 |
Mitch Hagstrand |
Fix checksum calculation for opcache
|
Revision tags: php-7.3.11RC1, php-7.2.24RC1, php-7.4.0RC3, php-7.2.23, php-7.3.10, php-7.4.0RC2, php-7.2.23RC1, php-7.3.10RC1, php-7.4.0RC1, php-7.1.32, php-7.2.22, php-7.3.9, php-7.4.0beta4, php-7.2.22RC1, php-7.3.9RC1, php-7.4.0beta2, php-7.1.31, php-7.2.21, php-7.3.8, php-7.4.0beta1, php-7.2.21RC1, php-7.3.8RC1, php-7.4.0alpha3, php-7.3.7, php-7.2.20, php-7.4.0alpha2 |
|
#
fcd6f2de |
| 20-Jun-2019 |
Christoph M. Becker |
Fix #78189: file cache strips last character of uname hash We must not forget to increase `len` by one to cater to the directory separator.
|
Revision tags: php-7.3.7RC3, php-7.3.7RC2, php-7.2.20RC2, php-7.4.0alpha1, php-7.3.7RC1, php-7.2.20RC1, php-7.2.19, php-7.3.6, php-7.1.30, php-7.2.19RC1, php-7.3.6RC1, php-7.1.29, php-7.2.18, php-7.3.5, php-7.2.18RC1, php-7.3.5RC1 |
|
#
5477d683 |
| 11-Apr-2019 |
Anatol Belski |
Fix potential OPcache file cache related issues To solve issues detected during testing, we backport the following commits to PHP 7.2: 129c5c1181bf344b37e13fd6dc5dfe76c13d7208
Fix potential OPcache file cache related issues To solve issues detected during testing, we backport the following commits to PHP 7.2: 129c5c1181bf344b37e13fd6dc5dfe76c13d7208 9ac133a0b3863ca4d9659140154ee237e5f4669a ce72bc6b658c335dd37393d0beb28584e6805e97
show more ...
|
#
f31d7ca8 |
| 10-Apr-2019 |
Anatol Belski |
Fix phar:// include handling with file cache
|
Revision tags: php-7.2.17, php-7.3.4, php-7.1.28, php-7.3.4RC1, php-7.2.17RC1, php-7.1.27, php-7.3.3, php-7.2.16, php-7.3.3RC1, php-7.2.16RC1, php-7.2.15, php-7.3.2, php-7.2.15RC1, php-7.3.2RC1, php-5.6.40, php-7.1.26, php-7.3.1, php-7.2.14, php-7.2.14RC1, php-7.3.1RC1, php-5.6.39, php-7.1.25, php-7.2.13, php-7.0.33, php-7.3.0, php-7.1.25RC1, php-7.2.13RC1, php-7.3.0RC6, php-7.1.24, php-7.2.12, php-7.3.0RC5 |
|
#
9afce019 |
| 01-Nov-2018 |
Zeev Suraski |
Future-proof email addresses
|
Revision tags: php-7.1.24RC1, php-7.2.12RC1, php-7.3.0RC4, php-7.1.23, php-7.2.11, php-7.3.0RC3, php-7.1.23RC1, php-7.2.11RC1, php-7.3.0RC2, php-5.6.38, php-7.1.22, php-7.3.0RC1, php-7.2.10, php-7.0.32, 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 |
|
#
bf8b5b22 |
| 14-Jul-2018 |
Anatol Belski |
Regroup the ifdef'd occurrences
|
#
f6440c3a |
| 14-Jul-2018 |
Anatol Belski |
Trail long path support also for deletion
|
#
dbabb35f |
| 13-Jul-2018 |
Anatol Belski |
Distinguish two error messages
|
#
129c5c11 |
| 12-Jul-2018 |
Anatol Belski |
Support long path also when reading from file cache
|
#
85ee47ed |
| 11-Jul-2018 |
Dmitry Stogov |
Changed structure of zend_class_entry.trait_aliases and zend_class_entry.trait_precedences to avoid keeping "intermediate" trait references, that are used only during inheritance.
|
#
2367e649 |
| 11-Jul-2018 |
Anatol Belski |
Make error messages more speaking
|
#
9ac133a0 |
| 11-Jul-2018 |
Anatol Belski |
Switch to ioutil routines to support long path in file cache
|
Revision tags: php-7.1.20RC1, php-7.2.8RC1, php-7.3.0alpha3 |
|
#
2543e61a |
| 22-Jun-2018 |
Nikita Popov |
Fixed bug #76509 In PHP static properties are shared between inheriting classes, unless they are explicitly overwritten. However, because this functionality was implemented using ref
Fixed bug #76509 In PHP static properties are shared between inheriting classes, unless they are explicitly overwritten. However, because this functionality was implemented using reference, it was possible to break the implementation by reassigning the static property reference. This is fixed by switching the implementation from using references to using INDIRECTs, which cannot be affected by userland code.
show more ...
|
Revision tags: php-7.3.0alpha2, php-7.1.19, php-7.2.7, php-7.1.19RC1, php-7.3.0alpha1, php-7.2.7RC1 |
|
#
5eb1f92f |
| 28-May-2018 |
Dmitry Stogov |
Use zend_string_release_ex() instread of zend_string_release() in places, where we sure about string persistence.
|
Revision tags: php-7.1.18, php-7.2.6, php-7.2.6RC1, php-7.1.18RC1 |
|
#
5b3e1ded |
| 03-May-2018 |
Dmitry Stogov |
Fixed bug #76205 (PHP-FPM sporadic crash when running Infinitewp)
|
#
df4d0a73 |
| 28-Apr-2018 |
Dmitry Stogov |
Revert "Fixed bug #76205 (PHP-FPM sporadic crash when running Infinitewp)." This reverts commit c6ce03e45e09087de8fc65f8a0a3345fea163ba2.
|
#
f8c1ce18 |
| 28-Apr-2018 |
Dmitry Stogov |
Revert "Merge branch 'PHP-7.1' into PHP-7.2" This reverts commit c547c1b980468c6d5fd6e1a15606c858ffff36bf, reversing changes made to 4c083e7a66525ef662f1ae211cafb09752832342.
|
#
1b305ecd |
| 28-Apr-2018 |
Dmitry Stogov |
Revert "Merge branch 'PHP-7.2'" This reverts commit f75b8a44cc078045b4e4a0a7dfe7e3ad3a8176e0, reversing changes made to aeb734910ae396d87989005edcc956e8fcb4253c.
|
#
c6ce03e4 |
| 27-Apr-2018 |
Dmitry Stogov |
Fixed bug #76205 (PHP-FPM sporadic crash when running Infinitewp).
|
#
279ba58e |
| 27-Apr-2018 |
Nikita Popov |
Fixed bug #76275 * Adjust IS_SERIALIZED() check to account for potential empty allocations at the end of the memory region. * Deallocate empty allocation if all try/catch elements
Fixed bug #76275 * Adjust IS_SERIALIZED() check to account for potential empty allocations at the end of the memory region. * Deallocate empty allocation if all try/catch elements have been removed in the block pass (similar to what we do if all live ranges have been eliminated).
show more ...
|
Revision tags: php-5.6.36, php-7.2.5, php-7.1.17, php-7.0.30, php-7.1.17RC1, php-7.2.5RC1, php-5.6.35, php-7.0.29, php-7.2.4, php-7.1.16, php-7.1.16RC1, php-7.2.4RC1 |
|
#
f31c4d53 |
| 12-Mar-2018 |
Dmitry Stogov |
Replaced usafe reference from SHM to process memory with SHM to SHM reference
|
#
a83581e2 |
| 05-Mar-2018 |
Dmitry Stogov |
Fixed invalid destructor
|
#
27a603e8 |
| 05-Mar-2018 |
Anatol Belski |
Include username into the file cache path
|
#
350082ed |
| 05-Mar-2018 |
Dmitry Stogov |
Fixed "opcache.file_cache_fallback" mode. It's not safe to change value of ZCG(accel_directives).file_cache_only, becuse it might be altered by INI subsystem. Use global variable instead.
|