. Fixed valgrind issue. (Tianfang Yang)
- Opcache:
+ . Fixed bug (assertion fails with extended info generated). (Laruence)
. Fixed bug (Phi sources removel). (Laruence)
. Fixed bug #75370 (Webserver hangs on valid PHP text). (Laruence)
. Fixed bug #75357 (segfault loading WordPress wp-admin). (Laruence)
uint32_t var = live_range->var & ~ZEND_LIVE_MASK;
uint32_t def = live_range->start - 1;
+ if ((op_array->opcodes[def].result_type == IS_UNUSED) &&
+ (UNEXPECTED(op_array->opcodes[def].opcode == ZEND_EXT_STMT) ||
+ UNEXPECTED(op_array->opcodes[def].opcode == ZEND_EXT_FCALL_END))) {
+ def--;
+ }
+
if (op_array->opcodes[def].result_type == IS_UNUSED) {
if (op_array->opcodes[def].opcode == ZEND_DO_FCALL) {
/* constructor call */