summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-03-29 15:58:12 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-05-21 10:49:05 -0700
commit94f39a2babe1569a14c1a7518a03615fca1dd5f7 (patch)
treeb8c4d329b70c43834be3ffa7190c62c2707e6f4d /pp_sys.c
parent226b920186705fc2c28a5bfa7f1b68ab3b56ddb4 (diff)
downloadperl-94f39a2babe1569a14c1a7518a03615fca1dd5f7.tar.gz
pp_sys.c: Remove SPAGAIN after my_(l)stat_flags
As of the previous commit, these two functions no longer affect the stack.
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 660d1d7c8b..7a83a76206 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3082,7 +3082,6 @@ PP(pp_ftrread)
}
result = my_stat_flags(0);
- SPAGAIN;
if (result < 0)
FT_RETURNUNDEF;
if (cando(stat_mode, effective, &PL_statcache))
@@ -3108,7 +3107,6 @@ PP(pp_ftis)
tryAMAGICftest_MG(opchar);
result = my_stat_flags(0);
- SPAGAIN;
if (result < 0)
FT_RETURNUNDEF;
if (op_type == OP_FTIS)
@@ -3186,7 +3184,6 @@ PP(pp_ftrowned)
#endif
result = my_stat_flags(0);
- SPAGAIN;
if (result < 0)
FT_RETURNUNDEF;
switch (PL_op->op_type) {
@@ -3256,7 +3253,6 @@ PP(pp_ftlink)
tryAMAGICftest_MG('l');
result = my_lstat_flags(0);
- SPAGAIN;
if (result < 0)
FT_RETURNUNDEF;