summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Fischer <mfischer@php.net>2002-05-20 17:41:35 +0000
committerMarkus Fischer <mfischer@php.net>2002-05-20 17:41:35 +0000
commit720a890f848ffc4fa26d8f6b5c9db4f85a7c6e01 (patch)
tree851dd1367b8969cb5aa9b9f22da78fdb234d9779
parent96bf2d1deba2e01c7dc9dd3439c292ff55cd85fb (diff)
downloadphp-git-720a890f848ffc4fa26d8f6b5c9db4f85a7c6e01.tar.gz
- ZTS gotcha
-rw-r--r--ext/standard/filestat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c
index 5ddb64a173..84ed8a6f63 100644
--- a/ext/standard/filestat.c
+++ b/ext/standard/filestat.c
@@ -553,7 +553,7 @@ static void php_stat(const char *filename, php_stat_len filename_length, int typ
char *stat_sb_names[13]={"dev", "ino", "mode", "nlink", "uid", "gid", "rdev",
"size", "atime", "mtime", "ctime", "blksize", "blocks"};
- if (php_check_open_basedir(filename)) {
+ if (php_check_open_basedir(filename TSRMLS_CC)) {
RETURN_FALSE;
}