Skip to content

Commit b641075

Browse files
committed
Fixed bug #78151
1 parent 4603ce7 commit b641075

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33
?? ??? ????, PHP 7.4.0alpha2
44

5+
- Core:
6+
. Fixed bug #78151 (Segfault caused by indirect expressions in PHP 7.4a1).
7+
(Nikita)
58

69
13 Jun 2019, PHP 7.4.0alpha1
710

Zend/zend_execute.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2855,7 +2855,7 @@ static zend_never_inline void zend_assign_to_property_reference_var_const(zval *
28552855

28562856
static zend_never_inline void zend_assign_to_property_reference_this_var(zval *container, zval *prop_ptr, zval *value_ptr OPLINE_DC EXECUTE_DATA_DC)
28572857
{
2858-
zend_assign_to_property_reference(container, IS_VAR, prop_ptr, IS_CONST, value_ptr
2858+
zend_assign_to_property_reference(container, IS_UNUSED, prop_ptr, IS_VAR, value_ptr
28592859
OPLINE_CC EXECUTE_DATA_CC);
28602860
}
28612861

0 commit comments

Comments
 (0)