#
e8430b59 |
| 15-Jul-2020 |
Nikita Popov |
Fixed bug #79862 While normally a private property in the active scope would take priority, we should not use this if it has the wrong "staticness". |
#
ee7c7a8e |
| 15-Jul-2020 |
Christopher Broadbent |
Fixed bug #79820 Similar to what is done for ReflectionType itself, copy the type name stored inside ReflectionProperty. Also make sure the type field is always initialized for dynam
Fixed bug #79820 Similar to what is done for ReflectionType itself, copy the type name stored inside ReflectionProperty. Also make sure the type field is always initialized for dynamic properties. This is a non-issue in PHP 8, because we store a pointer to the property_info there, rather than a copy.
show more ...
|
#
3804858c |
| 15-Jul-2020 |
Christopher Jones |
Retrofit description of recent PR changes |
#
70501b81 |
| 14-Jul-2020 |
Nikita Popov |
Fixed bug #79852 |
#
213852de |
| 13-Jul-2020 |
Nikita Popov |
Fixed bug #79828 |
#
86e2b7bb |
| 13-Jul-2020 |
Nikita Popov |
Fixed bug #79841 |
#
a72c53a0 |
| 10-Jul-2020 |
Nikita Popov |
Fixed bug #79817 Use *_IND macros in a few places in string.c. |
#
972383fd |
| 09-Jul-2020 |
Derick Rethans |
Revert "Partial fixed bug #79649 (Altering disable_functions from module init corrupts memory)" This reverts commit a297c09da5ad355d53a8e8ea72655a06d15b7bc7. |
#
77a8a709 |
| 08-Jul-2020 |
Nikita Popov |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix bug #79787
|
#
3d5de7d7 |
| 04-Jul-2020 |
XXiang |
Fix bug #79787 Closes GH-5807. |
#
77acc8a0 |
| 07-Jul-2020 |
Nikita Popov |
Fixed bug #79793 Make sure the string key is not released while throwing the undefined index warning. |
#
beb002a8 |
| 07-Jul-2020 |
Nikita Popov |
Fixed bug #79791 First throw the undefined variable warning, and then set the variable to null. Otherwise we're not guaranteed that it's actually null afterwards. |
#
62bec0e0 |
| 07-Jul-2020 |
Nikita Popov |
Fixed bug #79784 The fix here is essentially the same as for bug #78598, just for the undefined variable notice, rather than the undefined index one. |
#
220880ad |
| 04-Feb-2020 |
Nikita Popov |
Fixed bug #78598 When performing an RW modification of an array offset, the undefined offset warning may call an error handler / OB callback, which may destroy the array we're suppos
Fixed bug #78598 When performing an RW modification of an array offset, the undefined offset warning may call an error handler / OB callback, which may destroy the array we're supposed to change. Detect this by temporarily incrementing the reference count. If we find that the array has been modified/destroyed in the meantime, we do nothing -- the execution model here would be that the modification has happened on the destroyed version of the array.
show more ...
|
#
48a24717 |
| 07-Jul-2020 |
Nikita Popov |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fixed bug #79792
|
#
64931fd3 |
| 07-Jul-2020 |
Nikita Popov |
Fixed bug #79792 We need to remove the iterators even if the array is empty (we will not create one if the first place, but the array may become empty after the fact). |
#
eaf6303a |
| 07-Jul-2020 |
Nikita Popov |
Fixed bug #79790 I haven't tracked down in detail where the interaction with increment_function comes from, but the root problem here is failure to handle the illegal offset type exc
Fixed bug #79790 I haven't tracked down in detail where the interaction with increment_function comes from, but the root problem here is failure to handle the illegal offset type exception.
show more ...
|
#
6a9d934b |
| 07-Jul-2020 |
Nikita Popov |
Fixed bug #79779 ASSIGN_OBJ_REF was not handling in zend_wrong_string_offset. |
#
d9b4974cb |
| 07-Jul-2020 |
Nikita Popov |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fixed bug #79778
|
#
b765f96f |
| 07-Jul-2020 |
Nikita Popov |
Fixed bug #79778 In the interest of avoiding side-effects during dumping, I'm replacing the value with a <constant ast> string instead of performing an update constant operation. |
#
971e5c51 |
| 07-Jul-2020 |
Nikita Popov |
Fixed bug #79783 Make sure we don't drop the by-reference check when passing the result of a VM builtin function. |
#
829a1e65 |
| 07-Jul-2020 |
Gabriel Caruso |
Update NEWS for 8.0.0alpha3 |
#
73f4441d |
| 07-Jul-2020 |
Gabriel Caruso |
Update NEWS for PHP 8.0.0alpha2 |
#
8c67c166 |
| 02-Jul-2020 |
Christoph M. Becker |
Update to PCRE2 10.35 We also port a fix for the build system regarding the `-fcf-protection` gcc flag; cf. <https://bugs.exim.org/show_bug.cgi?id=2578>. |
#
993b19ae |
| 30-Jun-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #70362: Can't copy() large 'data://' with open_basedir
|