summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2016-06-20 22:13:31 -0700
committerStanislav Malyshev <stas@php.net>2016-06-20 22:13:31 -0700
commit7f428cae88f1294052087e6729f1ecb924b8a18d (patch)
treeece39dbb8e4db53a6e623f083849dff0804aa178
parent6c5211a0cef0cc2854eaa387e0eb036e012904d0 (diff)
downloadphp-git-7f428cae88f1294052087e6729f1ecb924b8a18d.tar.gz
fix build
-rw-r--r--ext/spl/spl_array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c
index 4e03c408c6..5cb7d34c6f 100644
--- a/ext/spl/spl_array.c
+++ b/ext/spl/spl_array.c
@@ -837,7 +837,7 @@ static HashTable *spl_array_get_gc(zval *object, zval ***gc_data, int *gc_data_c
*gc_data = &intern->array;
*gc_data_count = 1;
- return zend_std_get_properties(object);
+ return zend_std_get_properties(object TSRMLS_CC);
}
/* }}} */