mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
Merge branch 'PHP-7.3'
This commit is contained in:
commit
ee33c943e7
@ -563,6 +563,10 @@ ZEND_API int pass_two(zend_op_array *op_array)
|
||||
CG(context).literals_size = op_array->last_literal;
|
||||
#endif
|
||||
|
||||
/* Needs to be set directly after the opcode/literal reallocation, to ensure destruction
|
||||
* happens correctly if any of the following fixups generate a fatal error. */
|
||||
op_array->fn_flags |= ZEND_ACC_DONE_PASS_TWO;
|
||||
|
||||
opline = op_array->opcodes;
|
||||
end = opline + op_array->last;
|
||||
while (opline < end) {
|
||||
@ -691,7 +695,6 @@ ZEND_API int pass_two(zend_op_array *op_array)
|
||||
}
|
||||
}
|
||||
|
||||
op_array->fn_flags |= ZEND_ACC_DONE_PASS_TWO;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user