diff options
author | Andi Gutmans <andi@php.net> | 2001-06-21 22:30:23 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2001-06-21 22:30:23 +0000 |
commit | 5bf89ce61c4e5948cde1b6d4eaec4d3ae4317596 (patch) | |
tree | 462fd4caef19f07422f9310e090febf56159d078 /Zend/zend_globals.h | |
parent | 7690887cf6729613cb3de062fe850c435239b127 (diff) | |
download | php-git-5bf89ce61c4e5948cde1b6d4eaec4d3ae4317596.tar.gz |
- Hopefully fix bug #11476 and improve garbage to be freed very quickly.
Tree tagged as PRE_GRANULAR_GARBAGE_FIX before commiting.
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r-- | Zend/zend_globals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index e6a6a03b66..0d8789077f 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -181,7 +181,7 @@ struct _zend_executor_globals { int (*unary_op)(zval *result, zval *op1); int (*binary_op)(zval *result, zval *op1, zval *op2); - zval *garbage[4]; + zval *garbage[2]; int garbage_ptr; zval *user_error_handler; |