From 720a890f848ffc4fa26d8f6b5c9db4f85a7c6e01 Mon Sep 17 00:00:00 2001 From: Markus Fischer Date: Mon, 20 May 2002 17:41:35 +0000 Subject: [PATCH] - ZTS gotcha --- ext/standard/filestat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1