diff options
author | Nikita Popov <nikic@php.net> | 2016-02-12 18:50:19 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-02-12 18:52:53 +0100 |
commit | c0c73f708394c0c7ee4a3731dc29c87b83f786a4 (patch) | |
tree | 050682bd9c1366f79d03a6a3a32761ece5a0d1ce /Zend/zend_generators.h | |
parent | d1b777bd992525ced913a033bd7fff9490614f52 (diff) | |
download | php-git-c0c73f708394c0c7ee4a3731dc29c87b83f786a4.tar.gz |
Fix bug #69989
This should cover all the basic cycles. Anything further would
require scanning the call stack and live temporaries.
Diffstat (limited to 'Zend/zend_generators.h')
-rw-r--r-- | Zend/zend_generators.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_generators.h b/Zend/zend_generators.h index 89f0e3c2fb..95c5147a93 100644 --- a/Zend/zend_generators.h +++ b/Zend/zend_generators.h @@ -93,6 +93,7 @@ struct _zend_generator { zend_uchar flags; zval *gc_buffer; + uint32_t gc_buffer_size; }; static const zend_uchar ZEND_GENERATOR_CURRENTLY_RUNNING = 0x1; |