#
973be68c |
| 21-Jul-2020 |
Derick Rethans |
Prepare for 7.4.10 |
#
2c0a6977 |
| 21-Jul-2020 |
Christoph M. Becker |
7.3 is now 7.3.22-dev |
#
6f8d0ba0 |
| 20-Jul-2020 |
Nikita Popov |
Fix bug #79868 This simply restores the code from PHP 7.4 which I incorrectly "simplified" in master. |
#
4b96a75f |
| 20-Jul-2020 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #63527: DCOM does not work with Username, Password parameter
|
#
b2e3fd1e |
| 10-Jul-2020 |
Christoph M. Becker |
Fix #63527: DCOM does not work with Username, Password parameter We must not mix multibyte and wide character strings in the `COAUTHIDENTITY` structure. Using wide character strings thr
Fix #63527: DCOM does not work with Username, Password parameter We must not mix multibyte and wide character strings in the `COAUTHIDENTITY` structure. Using wide character strings throughout would have the advantage that the remote connection can be established regardless of the code page of the server, but that would more likely break BC, so we just drop the wide character string conversion of the username.
show more ...
|
#
86a62eb1 |
| 17-Jul-2020 |
Nikita Popov |
Fixed bug #79867 In line with usual rules, give untyped properties a null default value. Otherwise constructor promotion would give you a property declaration that cannot be achieved
Fixed bug #79867 In line with usual rules, give untyped properties a null default value. Otherwise constructor promotion would give you a property declaration that cannot be achieved through any other means.
show more ...
|
#
0c28b471 |
| 17-Jul-2020 |
Nikita Popov |
Fixed bug #79839 Add reference type sources in array_walk. |
#
6ffe08d1 |
| 16-Jul-2020 |
Remi Collet |
#79657 was cherry-picked in 7.4.7 |
#
2053329b |
| 15-Jul-2020 |
Nikita Popov |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix bug #78008: dns_check_record() always return true on Alpine
|
#
2c57378b |
| 14-Jul-2020 |
Andy Postnikov |
Fix bug #78008: dns_check_record() always return true on Alpine - free handle before return result - cleaned up remaining usage of MAXPACKET - update dns_get_mx() to use the same app
Fix bug #78008: dns_check_record() always return true on Alpine - free handle before return result - cleaned up remaining usage of MAXPACKET - update dns_get_mx() to use the same approach Closes GH-5854.
show more ...
|
#
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
|