summaryrefslogtreecommitdiff
path: root/ext/dbase
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-07-31 07:09:49 +0000
committerZeev Suraski <zeev@php.net>2001-07-31 07:09:49 +0000
commitb1de7fc900766b229f17bf9e1020b5a67b5b0964 (patch)
treec405a417de3fdafcd98ad8db882b770e96e70d90 /ext/dbase
parentbc42c37513a730b0b3ff9cf29e14e45e4ec50c71 (diff)
downloadphp-git-b1de7fc900766b229f17bf9e1020b5a67b5b0964.tar.gz
More TSRMLS_FETCH annihilation. Enough for today...
Diffstat (limited to 'ext/dbase')
-rw-r--r--ext/dbase/dbase.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dbase/dbase.c b/ext/dbase/dbase.c
index c9d870a61c..8394720fec 100644
--- a/ext/dbase/dbase.c
+++ b/ext/dbase/dbase.c
@@ -132,7 +132,7 @@ PHP_FUNCTION(dbase_open) {
RETURN_FALSE;
}
- if (php_check_open_basedir(dbf_name->value.str.val)) {
+ if (php_check_open_basedir(dbf_name->value.str.val TSRMLS_CC)) {
RETURN_FALSE;
}
@@ -599,7 +599,7 @@ PHP_FUNCTION(dbase_create) {
RETURN_FALSE;
}
- if (php_check_open_basedir(Z_STRVAL_P(filename))) {
+ if (php_check_open_basedir(Z_STRVAL_P(filename) TSRMLS_CC)) {
RETURN_FALSE;
}