From 2a9f250ec76b1ef94bfbac7fcbec2cd6a8a89db0 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Fri, 22 Nov 2002 10:49:46 +0000 Subject: [PATCH] =?utf8?q?-=20Initialize=20all=20functions=20to=20non-stat?= =?utf8?q?ic=20(patch=20by=20Marcus=20B=C3=B6rger=20=20=20.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Zend/zend_API.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Zend/zend_API.c b/Zend/zend_API.c index 030ca9489f..47a284da16 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -1055,6 +1055,7 @@ int zend_register_functions(zend_function_entry *functions, HashTable *function_ internal_function->arg_types = ptr->func_arg_types; internal_function->function_name = ptr->fname; internal_function->scope = NULL; + internal_function->is_static = 0; if (!internal_function->handler) { zend_error(error_type, "Null function defined as active function"); zend_unregister_functions(functions, count, target_function_table TSRMLS_CC); -- 2.50.1