mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fixed mixed declarations and code
This commit is contained in:
parent
3c4edc8c62
commit
d324db717c
1 changed files with 1 additions and 2 deletions
|
@ -259,11 +259,10 @@ static zend_always_inline void zend_vm_stack_free_call_frame_ex(uint32_t call_in
|
|||
ZEND_ASSERT_VM_STACK_GLOBAL;
|
||||
|
||||
if (UNEXPECTED(call_info & ZEND_CALL_ALLOCATED)) {
|
||||
ZEND_ASSERT(call == (zend_execute_data*)ZEND_VM_STACK_ELEMENTS(EG(vm_stack)));
|
||||
|
||||
zend_vm_stack p = EG(vm_stack);
|
||||
zend_vm_stack prev = p->prev;
|
||||
|
||||
ZEND_ASSERT(call == (zend_execute_data*)ZEND_VM_STACK_ELEMENTS(EG(vm_stack)));
|
||||
EG(vm_stack_top) = prev->top;
|
||||
EG(vm_stack_end) = prev->end;
|
||||
EG(vm_stack) = prev;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue