#
5888fbde |
| 24-Dec-2018 |
Dmitry Stogov |
Backport later interned strings destruction. |
#
2a32c1ca |
| 04-Dec-2018 |
Nikita Popov |
Remove unused import_used_extension utility value |
#
9afce019 |
| 01-Nov-2018 |
Zeev Suraski |
Future-proof email addresses |
#
67e0138c |
| 01-Nov-2018 |
Zeev Suraski |
Future-proof email addresses... |
#
7a5416b1 |
| 29-Oct-2018 |
Dmitry Stogov |
Execute zend_post_startup() with module_initialized flag set. |
#
33e777ac |
| 25-Oct-2018 |
Dmitry Stogov |
Improved shared interned strings handling. The previous implementation worked incorrectly in ZTS build. It changed strings only in function/class tables of one thread. Now all threads gets the same s
Improved shared interned strings handling. The previous implementation worked incorrectly in ZTS build. It changed strings only in function/class tables of one thread. Now all threads gets the same shared interned strings. Also, on shutdown, we don't try to replace SHM interned strings back to process strings, but delay dettachment of SHM instead.
show more ...
|
#
321c0cc3 |
| 17-Sep-2018 |
Anatol Belski |
Fix localized error messages and memory leaks The FormatMessage API needs to LocalFree the delivered error messages. In cases where messages are delivered in non ASCII compatible encodin
Fix localized error messages and memory leaks The FormatMessage API needs to LocalFree the delivered error messages. In cases where messages are delivered in non ASCII compatible encoding, the messages might be unreadable. This aligns the error message encoding with the encoding settings in PHP, the focus is UTF-8 as default. Initialize error buffer Avoid code duplication
show more ...
|
#
3145d6c6 |
| 08-Sep-2018 |
Christoph M. Becker |
Report mem leaks to stderr if no Win debugger is present Formerly, we sent output regarding memory leaks always to the debugger on Windows, but this appears to be not useful especially f
Report mem leaks to stderr if no Win debugger is present Formerly, we sent output regarding memory leaks always to the debugger on Windows, but this appears to be not useful especially for the PHPTs, which usually are not run under a debugger, and so important info will not be available there.
show more ...
|
#
84b195d9 |
| 10-Aug-2018 |
Gabriel Caruso |
Fix some misspellings |
Revision tags: php-7.1.20RC1, php-7.2.8RC1, php-7.3.0alpha3 |
|
#
8d3f8ca1 |
| 03-Jul-2018 |
Peter Kokot |
Remove unused Git attributes ident The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last use
Remove unused Git attributes ident The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
show more ...
|
#
c8550438 |
| 22-Jul-2018 |
Jakub Zelenka |
Rename none syslog.filter to all and update ini description |
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, php-7.1.18, php-7.2.6, php-7.2.6RC1, php-7.1.18RC1, 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, php-7.1.15, php-5.6.34, php-7.2.3, php-7.0.28, php-7.2.3RC1, php-7.1.15RC1, php-7.1.14, php-7.2.2, php-7.1.14RC1, php-7.2.2RC1, php-7.1.13, php-5.6.33, php-7.2.1, php-7.0.27, php-7.2.1RC1, php-7.1.13RC1, php-7.0.27RC1, php-7.2.0, php-7.1.12, l, php-7.1.12RC1, php-7.2.0RC6, php-7.0.26RC1, php-7.1.11, php-5.6.32, php-7.2.0RC5, php-7.0.25, php-7.1.11RC1, php-7.2.0RC4, php-7.0.25RC1, php-7.1.10, php-7.2.0RC3, php-7.0.24, php-7.2.0RC2, php-7.1.10RC1, php-7.0.24RC1, php-7.1.9, php-7.2.0RC1, php-7.0.23, php-7.1.9RC1, php-7.2.0beta3, php-7.0.23RC1 |
|
#
2010c02e |
| 11-Aug-2017 |
Philip Prindeville |
Add syslog.filter INI for filtering syslog messages Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> |
#
2475337b |
| 22-Aug-2017 |
Philip Prindeville |
Add syslog's ident and facility parameters to config Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> |
#
5eb1f92f |
| 28-May-2018 |
Dmitry Stogov |
Use zend_string_release_ex() instread of zend_string_release() in places, where we sure about string persistence. |
#
83f98f73 |
| 27-Apr-2018 |
Dmitry Stogov |
Don't store values of PHP_SAPI and PHP_BINARY in file cache, because it may be used by different SAPI. |
#
a6519d05 |
| 02-Jan-2018 |
Xinchen Hui |
year++ |
#
7a7ec01a |
| 02-Jan-2018 |
Xinchen Hui |
year++ |
#
688b9136 |
| 23-Dec-2017 |
Nikita Popov |
Fixed bug #54043 |
#
66c8a9d6 |
| 23-Dec-2017 |
Nikita Popov |
Remove EH_SUPPRESS mode It is unused and does not work in any meaningful way: Warnings are suppressed, but everything else (both notices and fatals) are not. It would make some sense
Remove EH_SUPPRESS mode It is unused and does not work in any meaningful way: Warnings are suppressed, but everything else (both notices and fatals) are not. It would make some sense if it suppressed warnings and lower, but right now this is a pointless mode.
show more ...
|
#
9e709e2f |
| 14-Dec-2017 |
Dmitry Stogov |
Move constants into read-only data segment |
#
f3545165 |
| 22-Nov-2017 |
krakjoe |
Merge branch 'PHP-7.2' * PHP-7.2: Check for binary_location allocation failure
|
#
ae810d78 |
| 22-Nov-2017 |
krakjoe |
Merge branch 'PHP-7.1' into PHP-7.2 * PHP-7.1: Check for binary_location allocation failure
|
#
fee6c812 |
| 22-Nov-2017 |
krakjoe |
Merge branch 'PHP-7.0' into PHP-7.1 * PHP-7.0: Check for binary_location allocation failure
|
#
7e0feb88 |
| 15-Nov-2017 |
Sebastian Ramadan |
Check for binary_location allocation failure |
#
7d5691cd |
| 21-Nov-2017 |
Sebastian Ramadan |
Fix some printf() specifier usages Use PRIu32 when printing uint32_t. Fix some %u/%d confusions. Add some casts where types are not standardized. |