diff options
Diffstat (limited to 'ext/standard/link.c')
-rw-r--r-- | ext/standard/link.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/link.c b/ext/standard/link.c index 978a14fda1..75e9bb297f 100644 --- a/ext/standard/link.c +++ b/ext/standard/link.c @@ -105,6 +105,7 @@ PHP_FUNCTION(symlink) #if HAVE_SYMLINK pval *topath, *frompath; int ret; + PLS_FETCH(); if (ARG_COUNT(ht) != 2 || getParameters(ht, 2, &topath, &frompath) == FAILURE) { WRONG_PARAM_COUNT; @@ -133,6 +134,7 @@ PHP_FUNCTION(link) #if HAVE_LINK pval *topath, *frompath; int ret; + PLS_FETCH(); if (ARG_COUNT(ht) != 2 || getParameters(ht, 2, &topath, &frompath) == FAILURE) { WRONG_PARAM_COUNT; |