summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-12-15 20:15:32 +0000
committerZeev Suraski <zeev@php.net>1999-12-15 20:15:32 +0000
commitced9cee10cf943568b487dc1204f95290b19de80 (patch)
tree710e255fb51ac24b17a0d34ec0ee2fafcb858474 /Zend/zend_execute_API.c
parent3c700f92601b6d579a675374dc06178369747f53 (diff)
downloadphp-git-ced9cee10cf943568b487dc1204f95290b19de80.tar.gz
- Implement return by reference:
- In function declaration instead of the return statement - In the assignment phase - Implement ability to turn off support for call-time pass by reference
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r--Zend/zend_execute_API.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c
index 40bea67381..536e63f9c0 100644
--- a/Zend/zend_execute_API.c
+++ b/Zend/zend_execute_API.c
@@ -115,6 +115,7 @@ void init_executor(CLS_D ELS_DC)
zend_llist_apply(&zend_extensions, (void (*)(void *)) zend_extension_activator);
EG(opline_ptr) = NULL;
EG(garbage_ptr) = 0;
+ EG(suspend_garbage) = 0;
zend_hash_init(&EG(imported_files), 5, NULL, NULL, 0);
}