Skip to content

Commit

Permalink
Fix ZTS build
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Oct 2, 2014
1 parent c41fbcf commit 51c90e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Zend/zend_objects_API.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ZEND_API zend_object *zend_object_create_proxy(zval *object, zval *member TSRMLS
ZEND_API zend_object_handlers *zend_get_std_object_handlers(void);
END_EXTERN_C()

static zend_always_inline void zend_object_release(zend_object *obj TSRMLS_CC)
static zend_always_inline void zend_object_release(zend_object *obj TSRMLS_DC)
{
if (--GC_REFCOUNT(obj) == 0) {
zend_objects_store_del(obj TSRMLS_CC);
Expand Down

0 comments on commit 51c90e9

Please sign in to comment.