diff options
author | Brian Fraser <fraserbn@gmail.com> | 2013-09-05 22:05:38 -0300 |
---|---|---|
committer | Brian Fraser <fraserbn@gmail.com> | 2013-09-21 08:47:42 -0300 |
commit | adf4621acac87682086f49be53bd2a451ace02ea (patch) | |
tree | 5578fb0ca7ec7a485b7f749314f38ec416a7ceed /pp_ctl.c | |
parent | 009819bba34f5d921632a25a7dcbb643b435c0e9 (diff) | |
download | perl-adf4621acac87682086f49be53bd2a451ace02ea.tar.gz |
Removed the ifdefs for INCOMPLETE_TAINTS
This was added in 5.5/5.6 as a backwards-compatibility measure
when taint was extended to happen in more places.
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -168,12 +168,10 @@ PP(pp_regcomp) } -#ifndef INCOMPLETE_TAINTS if (TAINTING_get && TAINT_get) { SvTAINTED_on((SV*)new_re); RX_TAINT_on(new_re); } -#endif #if !defined(USE_ITHREADS) /* can't change the optree at runtime either */ |