Remove unnecessary TAINT_NOT
authorFather Chrysostomos <sprout@cpan.org>
Wed, 8 Jun 2011 00:56:06 +0000 (17:56 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Wed, 8 Jun 2011 03:44:46 +0000 (20:44 -0700)
commit2aa629fafc4af31b65bb83bf556fee79269eec05
tree29ea1f6330f87a572933995e6632900b8248b6ec
parente08be60b99b393465a58e174337c5e8237231b1f
Remove unnecessary TAINT_NOT

(Ignore this for perldelta.)

*++newsp = *MARK obviously does no tainting.  The TAINT_NOT following
it was unnecessarily copied to S_return_lvalues from pp_return when
the former came into existence.  (pp_return does need TAINT_NOT, as it
uses sv_mortalcopy, which calls sv_setsv_flags, which does tainting.)
pp_ctl.c