diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-21 16:50:59 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-21 16:50:59 +0000 |
commit | 99710fe38e53c8e763d4758979c48cc5bc8503cf (patch) | |
tree | db68cf2ba82a896920132b1d7027aad13f8834e5 /pp_hot.c | |
parent | 1f27d7886bb5baf3031200b7e34d46f320ff9067 (diff) | |
download | perl-99710fe38e53c8e763d4758979c48cc5bc8503cf.tar.gz |
In pp_subst, rxtainted is not a boolean, as it stores 2 bits of values.
p4raw-id: //depot/perl@33033
Diffstat (limited to 'pp_hot.c')
-rw-r--r-- | pp_hot.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2051,7 +2051,7 @@ PP(pp_subst) I32 maxiters; register I32 i; bool once; - bool rxtainted; + U8 rxtainted; char *orig; I32 r_flags; register REGEXP *rx = PM_GETRE(pm); |