diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-03-29 15:58:12 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-05-21 10:49:05 -0700 |
commit | 94f39a2babe1569a14c1a7518a03615fca1dd5f7 (patch) | |
tree | b8c4d329b70c43834be3ffa7190c62c2707e6f4d /pp_sys.c | |
parent | 226b920186705fc2c28a5bfa7f1b68ab3b56ddb4 (diff) | |
download | perl-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.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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; |