summaryrefslogtreecommitdiff
path: root/Zend/zend_builtin_functions.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-07-30 04:54:16 +0000
committerZeev Suraski <zeev@php.net>2001-07-30 04:54:16 +0000
commit8ce8324e5907d9a08789b9a4bea3f1622057932a (patch)
tree57d068869333cc7ce147097cbd7cab95cbf366fb /Zend/zend_builtin_functions.c
parent11e5d2f22966ff2dff2848e73e38fb87ec55a2c1 (diff)
downloadphp-git-8ce8324e5907d9a08789b9a4bea3f1622057932a.tar.gz
More TSRMLS_FETCH annihilation
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r--Zend/zend_builtin_functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c
index d0b2fa60c7..4b13075058 100644
--- a/Zend/zend_builtin_functions.c
+++ b/Zend/zend_builtin_functions.c
@@ -1000,7 +1000,7 @@ ZEND_FUNCTION(get_resource_type)
RETURN_FALSE;
}
- resource_type = zend_rsrc_list_get_rsrc_type(Z_LVAL_PP(z_resource_type));
+ resource_type = zend_rsrc_list_get_rsrc_type(Z_LVAL_PP(z_resource_type) TSRMLS_CC);
if (resource_type) {
RETURN_STRING(resource_type, 1);
} else {