the initialization of parse_start was bypassed by
several gotos. Now initialized to zero, which may
not be the best choice.
p4raw-id: //depot/perl@10906
{
register regnode *ret = 0;
I32 flags;
+ char *parse_start = 0;
*flagp = WORST; /* Tentatively. */
register char *p;
char *oldp, *s;
STRLEN numlen;
- char *parse_start = RExC_parse - 1;
+
+ parse_start = RExC_parse - 1;
RExC_parse++;