Problem: Compiler warnings for shadowed variable. (John Little)
Solution: Move the variable declarations to the scope where they are used.
nfa_list_T *nextlist;
nfa_list_T *neglist;
int *listids = NULL;
- int j = 0;
#ifdef NFA_REGEXP_DEBUG_LOG
FILE *debug = fopen(NFA_REGEXP_DEBUG_LOG, "a");
switch (t->state->c)
{
case NFA_MATCH:
+ {
+ int j;
+
nfa_match = TRUE;
submatch->in_use = t->sub.in_use;
if (REG_MULTI)
if (nextlist->n == 0 && neglist->n == 0)
clen = 0;
goto nextchar;
+ }
case NFA_END_INVISIBLE:
/* This is only encountered after a NFA_START_INVISIBLE node.
#endif
if (result == TRUE)
{
+ int j;
+
/* Restore position in input text */
reginput = old_reginput;
regline = old_regline;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1031,
/**/
1030,
/**/