diff options
| author | Xinchen Hui <laruence@gmail.com> | 2014-02-28 12:59:51 +0800 | 
|---|---|---|
| committer | Xinchen Hui <laruence@gmail.com> | 2014-02-28 12:59:51 +0800 | 
| commit | 8ced4f0ac906fd9a28b968801487630326c45bc8 (patch) | |
| tree | 0b3ebc3981bc9ee6c92e6cc549430f4959d2611d /ext/spl/spl_array.c | |
| parent | 4318e57604b6b54039805285707842baedb47aac (diff) | |
| download | php-git-8ced4f0ac906fd9a28b968801487630326c45bc8.tar.gz | |
Move zend_objects_store_put out of zend_object_std_init
Diffstat (limited to 'ext/spl/spl_array.c')
| -rw-r--r-- | ext/spl/spl_array.c | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index 9244231222..b9cba542e1 100644 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -180,6 +180,7 @@ static zend_object *spl_array_object_new_ex(zend_class_entry *class_type, zval *  	memset(intern, 0, sizeof(spl_array_object));  	zend_object_std_init(&intern->std, class_type TSRMLS_CC); +	zend_objects_store_put(&intern->std TSRMLS_CC);  	object_properties_init(&intern->std, class_type);  	intern->ar_flags = 0; | 
