summaryrefslogtreecommitdiff
path: root/ext/oci8/oci8.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/oci8.c')
-rw-r--r--ext/oci8/oci8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c
index 593ea10ab0..7ad8eaf90f 100644
--- a/ext/oci8/oci8.c
+++ b/ext/oci8/oci8.c
@@ -2930,7 +2930,7 @@ PHP_FUNCTION(ocisavelobfile)
convert_to_string_ex(arg);
- if (php_check_open_basedir((*arg)->value.str.val)) {
+ if (php_check_open_basedir((*arg)->value.str.val TSRMLS_CC)) {
RETURN_FALSE;
}
@@ -3050,7 +3050,7 @@ PHP_FUNCTION(ociwritelobtofile)
}
if (filename && *filename) {
- if (php_check_open_basedir(filename)) {
+ if (php_check_open_basedir(filename TSRMLS_CC)) {
goto bail;
}