#
e45b6139 |
| 17-Dec-2019 |
Nikita Popov |
Free buffer in php_verror even if it is empty vspprintf allocates a buffer even if the resulting string is empty. |
#
ed55a61b |
| 17-Dec-2019 |
Nikita Popov |
Merge branch 'PHP-7.4' * PHP-7.4: Fix resetting of internal_encoding and friends
|
#
fcdc0a6d |
| 17-Dec-2019 |
Nikita Popov |
Fix resetting of internal_encoding and friends We need to update the value even if new_value is NULL. In particular, it should be reset back to NULL after each request if the setting was
Fix resetting of internal_encoding and friends We need to update the value even if new_value is NULL. In particular, it should be reset back to NULL after each request if the setting was not specified on startup. Otherwise we leave dangling pointers.
show more ...
|
Revision tags: php-7.1.33, php-7.2.24, php-7.3.11, php-7.4.0RC4 |
|
#
db233501 |
| 10-Oct-2019 |
Nikita Popov |
Use clean shutdown on uncaught exception |
#
508a1795 |
| 09-Oct-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.4' * PHP-7.4: Fix #78656: Parse errors classified as highest log-level
|
#
973617ca |
| 09-Oct-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #78656: Parse errors classified as highest log-level
|
#
bbd481c1 |
| 09-Oct-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.2' into PHP-7.3 * PHP-7.2: Fix #78656: Parse errors classified as highest log-level
|
#
3164186d |
| 09-Oct-2019 |
Erik Lundin |
Fix #78656: Parse errors classified as highest log-level |
Revision tags: php-7.3.11RC1, php-7.2.24RC1, php-7.4.0RC3 |
|
#
5d6e923d |
| 24-Sep-2019 |
Gabriel Caruso |
Remove mention of PHP major version in Copyright headers Closes GH-4732. |
Revision tags: php-7.2.23, php-7.3.10, php-7.4.0RC2, php-7.2.23RC1, php-7.3.10RC1, php-7.4.0RC1 |
|
#
790ed7d5 |
| 02-Sep-2019 |
Nikita Popov |
Enable display_startup_errors by default |
Revision tags: php-7.1.32, php-7.2.22, php-7.3.9, php-7.4.0beta4 |
|
#
58d661cd |
| 18-Aug-2019 |
Benjamin Eberlei |
Cleanup unnecessary if guard clause to free buffer. |
Revision tags: php-7.2.22RC1, php-7.3.9RC1 |
|
#
2e4f76dc |
| 13-Aug-2019 |
Nikita Popov |
Merge branch 'PHP-7.4'
|
#
b01824e5 |
| 13-Aug-2019 |
Nikita Popov |
Fixed bug #78406 |
Revision tags: php-7.4.0beta2, php-7.1.31, php-7.2.21, php-7.3.8 |
|
#
9a3aef3c |
| 29-Jul-2019 |
Nikita Popov |
Merge branch 'PHP-7.4'
|
#
6df1665b |
| 29-Jul-2019 |
Nikita Popov |
Merge branch 'PHP-7.3' into PHP-7.4
|
#
bbed5564 |
| 29-Jul-2019 |
Nikita Popov |
Merge branch 'PHP-7.2' into PHP-7.3
|
Revision tags: php-7.4.0beta1 |
|
#
38f1288b |
| 23-Jul-2019 |
Nikita Popov |
Fix Zend signals unblocking There are a few parts here: * opcache should not be blocking signals while invoking compile_file, otherwise signals may remain blocked on a compile er
Fix Zend signals unblocking There are a few parts here: * opcache should not be blocking signals while invoking compile_file, otherwise signals may remain blocked on a compile error. While at it, also protect SHM memory during compile_file. * We should deactivate Zend signals at the end of the request, to make sure that we gracefully recover from a missing unblock and signals don't remain blocked forever. * We don't use a critical section in deactivation, because it should not be necessary. Additionally we want to clean up the signal queue, if it is non-empty. * Enable SIGG(check) in debug builds so we notice issues in the future.
show more ...
|
#
36db71df |
| 22-Jul-2019 |
Nikita Popov |
Merge branch 'PHP-7.4'
|
Revision tags: php-7.2.21RC1, php-7.3.8RC1 |
|
#
b3f74b0b |
| 12-Jul-2019 |
Nikita Popov |
Deprecate allow_url_include |
#
3c2f433b |
| 17-Jul-2019 |
Nikita Popov |
Merge branch 'PHP-7.4'
|
#
856c5d28 |
| 17-Jul-2019 |
Nikita Popov |
Revert "Avoid unused fstat() call" This reverts commit 5a90dc77b8f244f603082aea022fadc0ce2c009c. Let's try to go with the reverse direction here and actually trust the reported
Revert "Avoid unused fstat() call" This reverts commit 5a90dc77b8f244f603082aea022fadc0ce2c009c. Let's try to go with the reverse direction here and actually trust the reported size...
show more ...
|
#
995b3916 |
| 17-Jul-2019 |
Nikita Popov |
Merge branch 'PHP-7.4'
|
#
5a90dc77 |
| 17-Jul-2019 |
Nikita Popov |
Avoid unused fstat() call If we're including a file via PHP streams, we're not going to trust the reported file size anyway and populate in a loop -- so don't bother determining the
Avoid unused fstat() call If we're including a file via PHP streams, we're not going to trust the reported file size anyway and populate in a loop -- so don't bother determining the file size in the first place. Only do this for non-tty HANDLE_FP now, which is the only case where this information was used.
show more ...
|
#
b32e9a92 |
| 17-Jul-2019 |
Nikita Popov |
Merge branch 'PHP-7.4'
|
#
a986e709 |
| 17-Jul-2019 |
Nikita Popov |
Avoid double buffering in Zend streams Disable buffering in PHP streams, to avoid storing and copying the file contents twice. This will call stream_set_option() on custom strea
Avoid double buffering in Zend streams Disable buffering in PHP streams, to avoid storing and copying the file contents twice. This will call stream_set_option() on custom stream wrapper as well, so the method needs to be implemented to avoid a warning.
show more ...
|