diff options
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 9390349deb..81caec5eb1 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1539,7 +1539,7 @@ PHP_FUNCTION(pg_loimport) break; } - if (PG(safe_mode) &&(!php_checkuid(Z_STRVAL_PP(file_in), 2))) { + if (PG(safe_mode) &&(!php_checkuid(Z_STRVAL_PP(file_in), NULL, 2))) { RETURN_FALSE; } |