Browse Source

Complete the fix for handling of exceptions happening during the

argument passing phase of function calls (fixes bug #26866)
PEAR_1_4DEV
Zeev Suraski 23 years ago
parent
commit
73a6bcf5cf
  1. 1
      Zend/zend_execute_API.c

1
Zend/zend_execute_API.c

@ -141,6 +141,7 @@ void init_executor(TSRMLS_D)
EG(in_autoload) = 0;
zend_ptr_stack_init(&EG(argument_stack));
zend_ptr_stack_push(&EG(argument_stack), (void *) NULL);
zend_hash_init(&EG(symbol_table), 50, NULL, ZVAL_PTR_DTOR, 0);
{

Loading…
Cancel
Save