Change 33033 by [EMAIL PROTECTED] on 2008/01/21 16:50:59
In pp_subst, rxtainted is not a boolean, as it stores 2 bits of values.
Affected files ...
... //depot/perl/pp_hot.c#557 edit
Differences ...
==== //depot/perl/pp_hot.c#557 (text) ====
Index: perl/pp_hot.c
--- perl/pp_hot.c#556~33017~ 2008-01-20 13:50:31.000000000 -0800
+++ perl/pp_hot.c 2008-01-21 08:50:59.000000000 -0800
@@ -2051,7 +2051,7 @@
I32 maxiters;
register I32 i;
bool once;
- bool rxtainted;
+ U8 rxtainted;
char *orig;
I32 r_flags;
register REGEXP *rx = PM_GETRE(pm);
End of Patch.