From: Andrei Zmievski Date: Mon, 14 May 2001 14:16:44 +0000 (+0000) Subject: Need to use ELS_FETCH() here. X-Git-Tag: PRE_GRANULAR_GARBAGE_FIX~429 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a86d17882bf4443358dd17cadecd21d8cd6aba8;p=php Need to use ELS_FETCH() here. --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 9c827fbf21..2d25c944e0 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -1783,6 +1783,7 @@ void user_tick_function_dtor(user_tick_function_entry *tick_function_entry) 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); @@ -1797,6 +1798,7 @@ static void user_tick_function_call(user_tick_function_entry *tick_fe) { 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) {