#
b90cd91e |
| 03-Sep-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.2' into PHP-7.3 * PHP-7.2: Fix #41997: SP call yields additional empty result set
|
#
41a4379c |
| 06-Aug-2019 |
Christoph M. Becker |
Fix #41997: SP call yields additional empty result set When stored procedures are called, the "final result set is a status result that includes no result set". Calling `::nextRowset()`
Fix #41997: SP call yields additional empty result set When stored procedures are called, the "final result set is a status result that includes no result set". Calling `::nextRowset()` on the actual last result set should return FALSE, since there is actually no further result set to be processed.
show more ...
|
#
c53da9b6 |
| 03-Sep-2019 |
Derick Rethans |
Update NEWS for 7.4.0RC2 |
#
ba7ae00b |
| 03-Sep-2019 |
Derick Rethans |
Update NEWS for PHP 7.4.0RC1 |
#
f7129255 |
| 02-Sep-2019 |
Christoph M. Becker |
Update NEWS |
#
e9cfd94b |
| 30-Aug-2019 |
Nikita Popov |
Merge branch 'PHP-7.2' into PHP-7.3
|
#
8f564e53 |
| 28-Aug-2019 |
Sergei Turchanov |
Fixed bug #78469 fcgi_accept_request function is supposed to call a FastCGI implementation's on_accept hook when entering an "accepting" stage (that is right before calling "accept")
Fixed bug #78469 fcgi_accept_request function is supposed to call a FastCGI implementation's on_accept hook when entering an "accepting" stage (that is right before calling "accept"). This hook implementation (fpm_request_accepting) updates a worker state to an "accepting" state which is effectively an "Idle" state, and updates counters on the scoreboard of the corresponding pool (idle++, active--). But this is not done when listening for client connections on a named pipe on Windows platform. In that case a combination of ConnectNamedPipe/WaitForSingleObject is used (to be able to catch in_shutdown as far as I understand), but it is nonetheless functionally equivalent to "accept" call. Also by not calling on_hook neither a worker's state is updated to "accepting" state nor scoreboard counters are updated.
show more ...
|
#
ae59a6d4 |
| 30-Aug-2019 |
Peter Kokot |
Update NEWS |
#
35177027 |
| 28-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #78473: odbc_close() closes arbitrary resources
|
#
195b8ae7 |
| 28-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.2' into PHP-7.3 * PHP-7.2: Fix #78473: odbc_close() closes arbitrary resources
|
#
b5572658 |
| 28-Aug-2019 |
Christoph M. Becker |
Fix #78473: odbc_close() closes arbitrary resources We have to bail out, if an invalid resource is given. For consistency with the other `zend_fetch_resource(2)` calls, we return `FALSE
Fix #78473: odbc_close() closes arbitrary resources We have to bail out, if an invalid resource is given. For consistency with the other `zend_fetch_resource(2)` calls, we return `FALSE`.
show more ...
|
#
ec9a96dc |
| 28-Aug-2019 |
Nikita Popov |
Fixed bug #78335 Destroy static properties and variables prior to the final GC run, as they may hold GC roots. |
#
302a1400 |
| 26-Aug-2019 |
Jakub Zelenka |
Merge branch 'PHP-7.3' into PHP-7.4
|
#
ffcf57fa |
| 25-Jul-2019 |
Tsuyoshi Sadakata |
Fix bug #78334 (fpm log prefix message includes wrong stdout/stderr notation) |
#
9483c507 |
| 26-Aug-2019 |
Nikita Popov |
Fixed bug #78456 |
#
1a78bdab |
| 25-Aug-2019 |
Theodore Brown |
Fix #78454: Consecutive numeric separators cause OOM error Resolves out of memory error when consecutive numeric separators follow a binary/hex literal. |
#
13e92223 |
| 23-Aug-2019 |
Nikita Popov |
Fixed bug #78436 |
#
514be3ff |
| 23-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #77812: Interactive mode does not support PHP 7.3-style heredoc
|
#
03c7749d |
| 23-Aug-2019 |
Christoph M. Becker |
Fix #77812: Interactive mode does not support PHP 7.3-style heredoc As of PHP 7.3.0, the rules regarding the heredoc and nowdoc closing identifier have been relaxed. While formerly, the
Fix #77812: Interactive mode does not support PHP 7.3-style heredoc As of PHP 7.3.0, the rules regarding the heredoc and nowdoc closing identifier have been relaxed. While formerly, the closing identifier was required to be placed at the beginning of a line and to be immediately followed by (a semicolon and) a line break, it may now be preceeded by whitespace, and may be followed by any non-word character. We adjust the recognition logic respectively.
show more ...
|
#
ca265eb5 |
| 23-Aug-2019 |
Christoph M. Becker |
Fix #78438: Corruption when __unserializing deeply nested structures When storing two temporary variables for delayed __unserialize() calls, we have to make sure that both fit into the s
Fix #78438: Corruption when __unserializing deeply nested structures When storing two temporary variables for delayed __unserialize() calls, we have to make sure that both fit into the same linked list element. To that end we introduce the internal API `tmp_var` which allows to reserve `num` slots in the same list element. We also fix the `var_dtor_entries` struct definition to use the proper size, namely `VAR_DTOR_ENTRIES_MAX`.
show more ...
|
#
1eb75f29 |
| 21-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #78441: Parse error due to heredoc identifier followed by digit
|
#
31070884 |
| 21-Aug-2019 |
Christoph M. Becker |
Fix #78441: Parse error due to heredoc identifier followed by digit Since digits are allowed for identifiers, we have to cater to them as well. |
#
cf678da5 |
| 20-Aug-2019 |
Derick Rethans |
Update NEWS for 7.4.0RC1 |
#
b3561e93 |
| 20-Aug-2019 |
Derick Rethans |
Update NEWS for PHP 7.4.0beta4 |
#
c03114e5 |
| 20-Aug-2019 |
Christoph M. Becker |
Fix #78386: fstat mode has unexpected value on PHP 7.4 We must not assume that any file which is not a directory is a regular file. Therefore we employ `GetFileType()` in this case to p
Fix #78386: fstat mode has unexpected value on PHP 7.4 We must not assume that any file which is not a directory is a regular file. Therefore we employ `GetFileType()` in this case to properly distinguish between character special, FIFO special and regular files.
show more ...
|