summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2009-12-08 01:57:16 +0000
committerStanislav Malyshev <stas@php.net>2009-12-08 01:57:16 +0000
commita9044795da419e0002ac9ab5a3ce8f96c6de0323 (patch)
treeb2acb9e87eb12dd17a5534663191a81fc3251afd
parent327cf380e8e325f9a07005d8aa87ea4466ec46ca (diff)
downloadphp-git-a9044795da419e0002ac9ab5a3ce8f96c6de0323.tar.gz
ouch, that ZTS
-rw-r--r--ext/standard/filestat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c
index c0a0e0f07c..c3be62bddd 100644
--- a/ext/standard/filestat.c
+++ b/ext/standard/filestat.c
@@ -1114,14 +1114,14 @@ PHP_FUNCTION(realpath_cache_size)
if (zend_parse_parameters_none() == FAILURE) {
return;
}
- RETURN_LONG(realpath_cache_size());
+ RETURN_LONG(realpath_cache_size(TSRMLS_C));
}
/* {{{ proto bool realpath_cache_get()
Get current size of realpath cache */
PHP_FUNCTION(realpath_cache_get)
{
- realpath_cache_bucket **buckets = realpath_cache_get_buckets(), **end = buckets + realpath_cache_max_buckets();
+ realpath_cache_bucket **buckets = realpath_cache_get_buckets(TSRMLS_C), **end = buckets + realpath_cache_max_buckets(TSRMLS_C);
if (zend_parse_parameters_none() == FAILURE) {
return;