From 9f6f6fe2199857ffc8eaab3f413c0fd18cca26f0 Mon Sep 17 00:00:00 2001 From: c9s Date: Sun, 10 Mar 2019 15:16:04 +0800 Subject: Remove function_table var from the caller function_table var is not used in call_user_function macro anymore hence replace the usage with NULL --- ext/interbase/php_ibase_udf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/interbase/php_ibase_udf.c') diff --git a/ext/interbase/php_ibase_udf.c b/ext/interbase/php_ibase_udf.c index 45440f9178..dabc7ba428 100644 --- a/ext/interbase/php_ibase_udf.c +++ b/ext/interbase/php_ibase_udf.c @@ -285,7 +285,7 @@ static void call_php(char *name, PARAMDSC *r, int argc, PARAMDSC **argv) LOCK(); /* now call the function */ - if (FAILURE == call_user_function(EG(function_table), NULL, + if (FAILURE == call_user_function(NULL, NULL, &callback, &return_value, argc, args)) { UNLOCK(); break; -- cgit v1.2.1