static int user_shutdown_function_call(php_shutdown_function_entry *shutdown_function_entry)
{
zval retval;
+ ELS_FETCH();
if (call_user_function(EG(function_table), NULL, shutdown_function_entry->arguments[0], &retval, shutdown_function_entry->arg_count-1, shutdown_function_entry->arguments+1)==SUCCESS) {
zval_dtor(&retval);
{
zval retval;
zval *function = tick_fe->arguments[0];
+ ELS_FETCH();
if (call_user_function(EG(function_table), NULL, function, &retval,
tick_fe->arg_count - 1, tick_fe->arguments + 1) == SUCCESS) {