Skip to content

Commit

Permalink
Merge branch 'PHP-8.4'
Browse files Browse the repository at this point in the history
* PHP-8.4:
  Properly initialize _override executor globals
  • Loading branch information
cmb69 committed Oct 31, 2024
2 parents f5e743a + 1fa8187 commit 063de1f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Zend/zend.c
Original file line number Diff line number Diff line change
Expand Up @@ -832,6 +832,8 @@ static void executor_globals_ctor(zend_executor_globals *executor_globals) /* {{
executor_globals->record_errors = false;
executor_globals->num_errors = 0;
executor_globals->errors = NULL;
executor_globals->filename_override = NULL;
executor_globals->lineno_override = -1;
#ifdef ZEND_CHECK_STACK_LIMIT
executor_globals->stack_limit = (void*)0;
executor_globals->stack_base = (void*)0;
Expand Down

1 comment on commit 063de1f

@cmb69
Copy link
Member Author

@cmb69 cmb69 commented on 063de1f Nov 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.