diff options
author | Thies C. Arntzen <thies@php.net> | 2002-08-28 15:05:15 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2002-08-28 15:05:15 +0000 |
commit | eef3e66f1f3e0803022aa34e67a0279314cb8bd6 (patch) | |
tree | bc9f86de56c36f37c9df389ca5bef2214db8afbd /Zend/zend_execute_API.c | |
parent | 7f62a0c972bb7de6cf280c9829686d58d2b68233 (diff) | |
download | php-git-eef3e66f1f3e0803022aa34e67a0279314cb8bd6.tar.gz |
debug_backtrace()
- make args passed to functions called vy call_user_function available again.
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 7c2bc2659b..03a8304cd9 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -477,6 +477,7 @@ int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *fun EX(object) = NULL; EX(Ts) = NULL; EX(op_array) = NULL; + EX(opline) = NULL; *retval_ptr_ptr = NULL; if (function_name->type==IS_ARRAY) { /* assume array($obj, $name) couple */ |