summaryrefslogtreecommitdiff
path: root/ext/standard/link.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-07-28 11:36:37 +0000
committerZeev Suraski <zeev@php.net>2001-07-28 11:36:37 +0000
commitd87cc976e1156b839fc6d4aa6b473a126802b8e3 (patch)
tree8acb068dd7458e1c8df3a7d8ecb87d065990fdb1 /ext/standard/link.c
parentb4f3b9d3ce9f55cf040fb5aa8f201c64646cab43 (diff)
downloadphp-git-d87cc976e1156b839fc6d4aa6b473a126802b8e3.tar.gz
Redesigned thread safety mechanism - nua nua
Diffstat (limited to 'ext/standard/link.c')
-rw-r--r--ext/standard/link.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/standard/link.c b/ext/standard/link.c
index c600be1fc3..e002018fc8 100644
--- a/ext/standard/link.c
+++ b/ext/standard/link.c
@@ -102,7 +102,6 @@ PHP_FUNCTION(symlink)
{
pval **topath, **frompath;
int ret;
- PLS_FETCH();
if (ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &topath, &frompath) == FAILURE) {
WRONG_PARAM_COUNT;
@@ -133,7 +132,6 @@ PHP_FUNCTION(link)
{
pval **topath, **frompath;
int ret;
- PLS_FETCH();
if (ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &topath, &frompath) == FAILURE) {
WRONG_PARAM_COUNT;