mirror of
https://github.com/php/php-src.git
synced 2026-03-29 11:42:17 +02:00
Fixed for PHP7
This commit is contained in:
4
NEWS
4
NEWS
@@ -5,6 +5,10 @@ PHP NEWS
|
||||
- Core:
|
||||
. Fixed bug #71841 (EG(error_zval) is not handled well). (Laruence)
|
||||
|
||||
- Opcache:
|
||||
. Fixed bug #71843 (null ptr deref ZEND_RETURN_SPEC_CONST_HANDLER).
|
||||
(Laruence)
|
||||
|
||||
- Standard:
|
||||
. Fixed bug #71840 (Unserialize accepts wrongly data). (Ryat, Laruence)
|
||||
|
||||
|
||||
@@ -1894,8 +1894,11 @@ static void zend_t_usage(zend_code_block *block, zend_op_array *op_array, zend_b
|
||||
case ZEND_BOOL_NOT:
|
||||
if (ZEND_OP1_TYPE(opline) == IS_CONST) {
|
||||
literal_dtor(&ZEND_OP1_LITERAL(opline));
|
||||
} else if (ZEND_OP1_TYPE(opline) == IS_TMP_VAR) {
|
||||
opline->opcode = ZEND_FREE;
|
||||
} else {
|
||||
MAKE_NOP(opline);
|
||||
}
|
||||
MAKE_NOP(opline);
|
||||
break;
|
||||
case ZEND_JMPZ_EX:
|
||||
case ZEND_JMPNZ_EX:
|
||||
|
||||
Reference in New Issue
Block a user