| 301 |
/* 60 */ |
/* 60 */ |
| 302 |
"(*VERB) not recognized\0" |
"(*VERB) not recognized\0" |
| 303 |
"number is too big\0" |
"number is too big\0" |
| 304 |
"subpattern name expected after (?&\0" |
"subpattern name expected\0" |
| 305 |
"digit expected after (?+"; |
"digit expected after (?+"; |
| 306 |
|
|
| 307 |
|
|
| 498 |
|
|
| 499 |
if (c == 0) *errorcodeptr = ERR1; |
if (c == 0) *errorcodeptr = ERR1; |
| 500 |
|
|
| 501 |
/* Non-alphamerics are literals. For digits or letters, do an initial lookup in |
/* Non-alphanumerics are literals. For digits or letters, do an initial lookup |
| 502 |
a table. A non-zero result is something that can be returned immediately. |
in a table. A non-zero result is something that can be returned immediately. |
| 503 |
Otherwise further processing may be required. */ |
Otherwise further processing may be required. */ |
| 504 |
|
|
| 505 |
#ifndef EBCDIC /* ASCII coding */ |
#ifndef EBCDIC /* ASCII coding */ |
| 506 |
else if (c < '0' || c > 'z') {} /* Not alphameric */ |
else if (c < '0' || c > 'z') {} /* Not alphanumeric */ |
| 507 |
else if ((i = escapes[c - '0']) != 0) c = i; |
else if ((i = escapes[c - '0']) != 0) c = i; |
| 508 |
|
|
| 509 |
#else /* EBCDIC coding */ |
#else /* EBCDIC coding */ |
| 510 |
else if (c < 'a' || (ebcdic_chartab[c] & 0x0E) == 0) {} /* Not alphameric */ |
else if (c < 'a' || (ebcdic_chartab[c] & 0x0E) == 0) {} /* Not alphanumeric */ |
| 511 |
else if ((i = escapes[c - 0x48]) != 0) c = i; |
else if ((i = escapes[c - 0x48]) != 0) c = i; |
| 512 |
#endif |
#endif |
| 513 |
|
|
| 724 |
break; |
break; |
| 725 |
|
|
| 726 |
/* PCRE_EXTRA enables extensions to Perl in the matter of escapes. Any |
/* PCRE_EXTRA enables extensions to Perl in the matter of escapes. Any |
| 727 |
other alphameric following \ is an error if PCRE_EXTRA was set; otherwise, |
other alphanumeric following \ is an error if PCRE_EXTRA was set; |
| 728 |
for Perl compatibility, it is a literal. This code looks a bit odd, but |
otherwise, for Perl compatibility, it is a literal. This code looks a bit |
| 729 |
there used to be some cases other than the default, and there may be again |
odd, but there used to be some cases other than the default, and there may |
| 730 |
in future, so I haven't "optimized" it. */ |
be again in future, so I haven't "optimized" it. */ |
| 731 |
|
|
| 732 |
default: |
default: |
| 733 |
if ((options & PCRE_EXTRA) != 0) switch(c) |
if ((options & PCRE_EXTRA) != 0) switch(c) |
| 1508 |
can match the empty string or not. It is called from could_be_empty() |
can match the empty string or not. It is called from could_be_empty() |
| 1509 |
below and from compile_branch() when checking for an unlimited repeat of a |
below and from compile_branch() when checking for an unlimited repeat of a |
| 1510 |
group that can match nothing. Note that first_significant_code() skips over |
group that can match nothing. Note that first_significant_code() skips over |
| 1511 |
assertions. If we hit an unclosed bracket, we return "empty" - this means we've |
backward and negative forward assertions when its final argument is TRUE. If we |
| 1512 |
struck an inner bracket whose current branch will already have been scanned. |
hit an unclosed bracket, we return "empty" - this means we've struck an inner |
| 1513 |
|
bracket whose current branch will already have been scanned. |
| 1514 |
|
|
| 1515 |
Arguments: |
Arguments: |
| 1516 |
code points to start of search |
code points to start of search |
| 1532 |
|
|
| 1533 |
c = *code; |
c = *code; |
| 1534 |
|
|
| 1535 |
|
/* Skip over forward assertions; the other assertions are skipped by |
| 1536 |
|
first_significant_code() with a TRUE final argument. */ |
| 1537 |
|
|
| 1538 |
|
if (c == OP_ASSERT) |
| 1539 |
|
{ |
| 1540 |
|
do code += GET(code, 1); while (*code == OP_ALT); |
| 1541 |
|
c = *code; |
| 1542 |
|
continue; |
| 1543 |
|
} |
| 1544 |
|
|
| 1545 |
/* Groups with zero repeats can of course be empty; skip them. */ |
/* Groups with zero repeats can of course be empty; skip them. */ |
| 1546 |
|
|
| 1547 |
if (c == OP_BRAZERO || c == OP_BRAMINZERO) |
if (c == OP_BRAZERO || c == OP_BRAMINZERO) |
| 1737 |
*************************************************/ |
*************************************************/ |
| 1738 |
|
|
| 1739 |
/* This function is called when the sequence "[:" or "[." or "[=" is |
/* This function is called when the sequence "[:" or "[." or "[=" is |
| 1740 |
encountered in a character class. It checks whether this is followed by an |
encountered in a character class. It checks whether this is followed by a |
| 1741 |
optional ^ and then a sequence of letters, terminated by a matching ":]" or |
sequence of characters terminated by a matching ":]" or ".]" or "=]". If we |
| 1742 |
".]" or "=]". |
reach an unescaped ']' without the special preceding character, return FALSE. |
| 1743 |
|
|
| 1744 |
|
Originally, this function only recognized a sequence of letters between the |
| 1745 |
|
terminators, but it seems that Perl recognizes any sequence of characters, |
| 1746 |
|
though of course unknown POSIX names are subsequently rejected. Perl gives an |
| 1747 |
|
"Unknown POSIX class" error for [:f\oo:] for example, where previously PCRE |
| 1748 |
|
didn't consider this to be a POSIX class. Likewise for [:1234:]. |
| 1749 |
|
|
| 1750 |
|
The problem in trying to be exactly like Perl is in the handling of escapes. We |
| 1751 |
|
have to be sure that [abc[:x\]pqr] is *not* treated as containing a POSIX |
| 1752 |
|
class, but [abc[:x\]pqr:]] is (so that an error can be generated). The code |
| 1753 |
|
below handles the special case of \], but does not try to do any other escape |
| 1754 |
|
processing. This makes it different from Perl for cases such as [:l\ower:] |
| 1755 |
|
where Perl recognizes it as the POSIX class "lower" but PCRE does not recognize |
| 1756 |
|
"l\ower". This is a lesser evil that not diagnosing bad classes when Perl does, |
| 1757 |
|
I think. |
| 1758 |
|
|
| 1759 |
Argument: |
Arguments: |
| 1760 |
ptr pointer to the initial [ |
ptr pointer to the initial [ |
| 1761 |
endptr where to return the end pointer |
endptr where to return the end pointer |
|
cd pointer to compile data |
|
| 1762 |
|
|
| 1763 |
Returns: TRUE or FALSE |
Returns: TRUE or FALSE |
| 1764 |
*/ |
*/ |
| 1765 |
|
|
| 1766 |
static BOOL |
static BOOL |
| 1767 |
check_posix_syntax(const uschar *ptr, const uschar **endptr, compile_data *cd) |
check_posix_syntax(const uschar *ptr, const uschar **endptr) |
| 1768 |
{ |
{ |
| 1769 |
int terminator; /* Don't combine these lines; the Solaris cc */ |
int terminator; /* Don't combine these lines; the Solaris cc */ |
| 1770 |
terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
| 1771 |
if (*(++ptr) == '^') ptr++; |
for (++ptr; *ptr != 0; ptr++) |
|
while ((cd->ctypes[*ptr] & ctype_letter) != 0) ptr++; |
|
|
if (*ptr == terminator && ptr[1] == ']') |
|
| 1772 |
{ |
{ |
| 1773 |
*endptr = ptr; |
if (*ptr == '\\' && ptr[1] == ']') ptr++; else |
| 1774 |
return TRUE; |
{ |
| 1775 |
|
if (*ptr == ']') return FALSE; |
| 1776 |
|
if (*ptr == terminator && ptr[1] == ']') |
| 1777 |
|
{ |
| 1778 |
|
*endptr = ptr; |
| 1779 |
|
return TRUE; |
| 1780 |
|
} |
| 1781 |
|
} |
| 1782 |
} |
} |
| 1783 |
return FALSE; |
return FALSE; |
| 1784 |
} |
} |
| 2376 |
BOOL class_utf8; |
BOOL class_utf8; |
| 2377 |
BOOL utf8 = (options & PCRE_UTF8) != 0; |
BOOL utf8 = (options & PCRE_UTF8) != 0; |
| 2378 |
uschar *class_utf8data; |
uschar *class_utf8data; |
| 2379 |
|
uschar *class_utf8data_base; |
| 2380 |
uschar utf8_char[6]; |
uschar utf8_char[6]; |
| 2381 |
#else |
#else |
| 2382 |
BOOL utf8 = FALSE; |
BOOL utf8 = FALSE; |
| 2416 |
for (;; ptr++) |
for (;; ptr++) |
| 2417 |
{ |
{ |
| 2418 |
BOOL negate_class; |
BOOL negate_class; |
| 2419 |
BOOL should_flip_negation; |
BOOL should_flip_negation; |
| 2420 |
BOOL possessive_quantifier; |
BOOL possessive_quantifier; |
| 2421 |
BOOL is_quantifier; |
BOOL is_quantifier; |
| 2422 |
BOOL is_recurse; |
BOOL is_recurse; |
| 2640 |
they are encountered at the top level, so we'll do that too. */ |
they are encountered at the top level, so we'll do that too. */ |
| 2641 |
|
|
| 2642 |
if ((ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
if ((ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
| 2643 |
check_posix_syntax(ptr, &tempptr, cd)) |
check_posix_syntax(ptr, &tempptr)) |
| 2644 |
{ |
{ |
| 2645 |
*errorcodeptr = (ptr[1] == ':')? ERR13 : ERR31; |
*errorcodeptr = (ptr[1] == ':')? ERR13 : ERR31; |
| 2646 |
goto FAILED; |
goto FAILED; |
| 2665 |
else break; |
else break; |
| 2666 |
} |
} |
| 2667 |
|
|
| 2668 |
/* If a class contains a negative special such as \S, we need to flip the |
/* If a class contains a negative special such as \S, we need to flip the |
| 2669 |
negation flag at the end, so that support for characters > 255 works |
negation flag at the end, so that support for characters > 255 works |
| 2670 |
correctly (they are all included in the class). */ |
correctly (they are all included in the class). */ |
| 2671 |
|
|
| 2672 |
should_flip_negation = FALSE; |
should_flip_negation = FALSE; |
| 2688 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 2689 |
class_utf8 = FALSE; /* No chars >= 256 */ |
class_utf8 = FALSE; /* No chars >= 256 */ |
| 2690 |
class_utf8data = code + LINK_SIZE + 2; /* For UTF-8 items */ |
class_utf8data = code + LINK_SIZE + 2; /* For UTF-8 items */ |
| 2691 |
|
class_utf8data_base = class_utf8data; /* For resetting in pass 1 */ |
| 2692 |
#endif |
#endif |
| 2693 |
|
|
| 2694 |
/* Process characters until ] is reached. By writing this as a "do" it |
/* Process characters until ] is reached. By writing this as a "do" it |
| 2704 |
{ /* Braces are required because the */ |
{ /* Braces are required because the */ |
| 2705 |
GETCHARLEN(c, ptr, ptr); /* macro generates multiple statements */ |
GETCHARLEN(c, ptr, ptr); /* macro generates multiple statements */ |
| 2706 |
} |
} |
| 2707 |
|
|
| 2708 |
|
/* In the pre-compile phase, accumulate the length of any UTF-8 extra |
| 2709 |
|
data and reset the pointer. This is so that very large classes that |
| 2710 |
|
contain a zillion UTF-8 characters no longer overwrite the work space |
| 2711 |
|
(which is on the stack). */ |
| 2712 |
|
|
| 2713 |
|
if (lengthptr != NULL) |
| 2714 |
|
{ |
| 2715 |
|
*lengthptr += class_utf8data - class_utf8data_base; |
| 2716 |
|
class_utf8data = class_utf8data_base; |
| 2717 |
|
} |
| 2718 |
|
|
| 2719 |
#endif |
#endif |
| 2720 |
|
|
| 2721 |
/* Inside \Q...\E everything is literal except \E */ |
/* Inside \Q...\E everything is literal except \E */ |
| 2739 |
|
|
| 2740 |
if (c == '[' && |
if (c == '[' && |
| 2741 |
(ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
(ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
| 2742 |
check_posix_syntax(ptr, &tempptr, cd)) |
check_posix_syntax(ptr, &tempptr)) |
| 2743 |
{ |
{ |
| 2744 |
BOOL local_negate = FALSE; |
BOOL local_negate = FALSE; |
| 2745 |
int posix_class, taboffset, tabopt; |
int posix_class, taboffset, tabopt; |
| 2756 |
if (*ptr == '^') |
if (*ptr == '^') |
| 2757 |
{ |
{ |
| 2758 |
local_negate = TRUE; |
local_negate = TRUE; |
| 2759 |
should_flip_negation = TRUE; /* Note negative special */ |
should_flip_negation = TRUE; /* Note negative special */ |
| 2760 |
ptr++; |
ptr++; |
| 2761 |
} |
} |
| 2762 |
|
|
| 2831 |
c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
| 2832 |
if (*errorcodeptr != 0) goto FAILED; |
if (*errorcodeptr != 0) goto FAILED; |
| 2833 |
|
|
| 2834 |
if (-c == ESC_b) c = '\b'; /* \b is backslash in a class */ |
if (-c == ESC_b) c = '\b'; /* \b is backspace in a class */ |
| 2835 |
else if (-c == ESC_X) c = 'X'; /* \X is literal X in a class */ |
else if (-c == ESC_X) c = 'X'; /* \X is literal X in a class */ |
| 2836 |
else if (-c == ESC_R) c = 'R'; /* \R is literal R in a class */ |
else if (-c == ESC_R) c = 'R'; /* \R is literal R in a class */ |
| 2837 |
else if (-c == ESC_Q) /* Handle start of quoted string */ |
else if (-c == ESC_Q) /* Handle start of quoted string */ |
| 2859 |
continue; |
continue; |
| 2860 |
|
|
| 2861 |
case ESC_D: |
case ESC_D: |
| 2862 |
should_flip_negation = TRUE; |
should_flip_negation = TRUE; |
| 2863 |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; |
| 2864 |
continue; |
continue; |
| 2865 |
|
|
| 2868 |
continue; |
continue; |
| 2869 |
|
|
| 2870 |
case ESC_W: |
case ESC_W: |
| 2871 |
should_flip_negation = TRUE; |
should_flip_negation = TRUE; |
| 2872 |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; |
| 2873 |
continue; |
continue; |
| 2874 |
|
|
| 2878 |
continue; |
continue; |
| 2879 |
|
|
| 2880 |
case ESC_S: |
case ESC_S: |
| 2881 |
should_flip_negation = TRUE; |
should_flip_negation = TRUE; |
| 2882 |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_space]; |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_space]; |
| 2883 |
classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ |
classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ |
| 2884 |
continue; |
continue; |
| 2885 |
|
|
|
case ESC_E: /* Perl ignores an orphan \E */ |
|
|
continue; |
|
|
|
|
| 2886 |
default: /* Not recognized; fall through */ |
default: /* Not recognized; fall through */ |
| 2887 |
break; /* Need "default" setting to stop compiler warning. */ |
break; /* Need "default" setting to stop compiler warning. */ |
| 2888 |
} |
} |
| 3117 |
d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
| 3118 |
if (*errorcodeptr != 0) goto FAILED; |
if (*errorcodeptr != 0) goto FAILED; |
| 3119 |
|
|
| 3120 |
/* \b is backslash; \X is literal X; \R is literal R; any other |
/* \b is backspace; \X is literal X; \R is literal R; any other |
| 3121 |
special means the '-' was literal */ |
special means the '-' was literal */ |
| 3122 |
|
|
| 3123 |
if (d < 0) |
if (d < 0) |
| 3381 |
zeroreqbyte = reqbyte; |
zeroreqbyte = reqbyte; |
| 3382 |
|
|
| 3383 |
/* If there are characters with values > 255, we have to compile an |
/* If there are characters with values > 255, we have to compile an |
| 3384 |
extended class, with its own opcode, unless there was a negated special |
extended class, with its own opcode, unless there was a negated special |
| 3385 |
such as \S in the class, because in that case all characters > 255 are in |
such as \S in the class, because in that case all characters > 255 are in |
| 3386 |
the class, so any that were explicitly given as well can be ignored. If |
the class, so any that were explicitly given as well can be ignored. If |
| 3387 |
(when there are explicit characters > 255 that must be listed) there are no |
(when there are explicit characters > 255 that must be listed) there are no |
| 3388 |
characters < 256, we can omit the bitmap in the actual compiled code. */ |
characters < 256, we can omit the bitmap in the actual compiled code. */ |
| 3389 |
|
|
| 3414 |
} |
} |
| 3415 |
#endif |
#endif |
| 3416 |
|
|
| 3417 |
/* If there are no characters > 255, set the opcode to OP_CLASS or |
/* If there are no characters > 255, set the opcode to OP_CLASS or |
| 3418 |
OP_NCLASS, depending on whether the whole class was negated and whether |
OP_NCLASS, depending on whether the whole class was negated and whether |
| 3419 |
there were negative specials such as \S in the class. Then copy the 32-byte |
there were negative specials such as \S in the class. Then copy the 32-byte |
| 3420 |
map into the code vector, negating it if necessary. */ |
map into the code vector, negating it if necessary. */ |
| 3421 |
|
|
| 3422 |
*code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; |
*code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; |
| 3423 |
if (negate_class) |
if (negate_class) |
| 3424 |
{ |
{ |
| 4062 |
int len; |
int len; |
| 4063 |
if (*tempcode == OP_EXACT || *tempcode == OP_TYPEEXACT || |
if (*tempcode == OP_EXACT || *tempcode == OP_TYPEEXACT || |
| 4064 |
*tempcode == OP_NOTEXACT) |
*tempcode == OP_NOTEXACT) |
| 4065 |
tempcode += _pcre_OP_lengths[*tempcode]; |
tempcode += _pcre_OP_lengths[*tempcode] + |
| 4066 |
|
((*tempcode == OP_TYPEEXACT && |
| 4067 |
|
(tempcode[3] == OP_PROP || tempcode[3] == OP_NOTPROP))? 2:0); |
| 4068 |
len = code - tempcode; |
len = code - tempcode; |
| 4069 |
if (len > 0) switch (*tempcode) |
if (len > 0) switch (*tempcode) |
| 4070 |
{ |
{ |
| 4291 |
*errorcodeptr = ERR58; |
*errorcodeptr = ERR58; |
| 4292 |
goto FAILED; |
goto FAILED; |
| 4293 |
} |
} |
| 4294 |
recno = (refsign == '-')? |
recno = (refsign == '-')? |
| 4295 |
cd->bracount - recno + 1 : recno +cd->bracount; |
cd->bracount - recno + 1 : recno +cd->bracount; |
| 4296 |
if (recno <= 0 || recno > cd->final_bracount) |
if (recno <= 0 || recno > cd->final_bracount) |
| 4297 |
{ |
{ |
| 4370 |
} |
} |
| 4371 |
|
|
| 4372 |
/* Check for the "name" actually being a subpattern number. We are |
/* Check for the "name" actually being a subpattern number. We are |
| 4373 |
in the second pass here, so final_bracount is set. */ |
in the second pass here, so final_bracount is set. */ |
| 4374 |
|
|
| 4375 |
else if (recno > 0 && recno <= cd->final_bracount) |
else if (recno > 0 && recno <= cd->final_bracount) |
| 4376 |
{ |
{ |
| 4566 |
|
|
| 4567 |
/* We come here from the Python syntax above that handles both |
/* We come here from the Python syntax above that handles both |
| 4568 |
references (?P=name) and recursion (?P>name), as well as falling |
references (?P=name) and recursion (?P>name), as well as falling |
| 4569 |
through from the Perl recursion syntax (?&name). */ |
through from the Perl recursion syntax (?&name). We also come here from |
| 4570 |
|
the Perl \k<name> or \k'name' back reference syntax and the \k{name} |
| 4571 |
|
.NET syntax. */ |
| 4572 |
|
|
| 4573 |
NAMED_REF_OR_RECURSE: |
NAMED_REF_OR_RECURSE: |
| 4574 |
name = ++ptr; |
name = ++ptr; |
| 4584 |
{ |
{ |
| 4585 |
*errorcodeptr = ERR62; |
*errorcodeptr = ERR62; |
| 4586 |
goto FAILED; |
goto FAILED; |
| 4587 |
} |
} |
| 4588 |
if (*ptr != terminator) |
if (*ptr != terminator) |
| 4589 |
{ |
{ |
| 4590 |
*errorcodeptr = ERR42; |
*errorcodeptr = ERR42; |
| 4598 |
recno = 0; |
recno = 0; |
| 4599 |
} |
} |
| 4600 |
|
|
| 4601 |
/* In the real compile, seek the name in the table. We check the name |
/* In the real compile, seek the name in the table. We check the name |
| 4602 |
first, and then check that we have reached the end of the name in the |
first, and then check that we have reached the end of the name in the |
| 4603 |
table. That way, if the name that is longer than any in the table, |
table. That way, if the name that is longer than any in the table, |
| 4604 |
the comparison will fail without reading beyond the table entry. */ |
the comparison will fail without reading beyond the table entry. */ |
| 4605 |
|
|
| 4609 |
for (i = 0; i < cd->names_found; i++) |
for (i = 0; i < cd->names_found; i++) |
| 4610 |
{ |
{ |
| 4611 |
if (strncmp((char *)name, (char *)slot+2, namelen) == 0 && |
if (strncmp((char *)name, (char *)slot+2, namelen) == 0 && |
| 4612 |
slot[2+namelen] == 0) |
slot[2+namelen] == 0) |
| 4613 |
break; |
break; |
| 4614 |
slot += cd->name_entry_size; |
slot += cd->name_entry_size; |
| 4615 |
} |
} |
| 4647 |
{ |
{ |
| 4648 |
const uschar *called; |
const uschar *called; |
| 4649 |
|
|
| 4650 |
if ((refsign = *ptr) == '+') |
if ((refsign = *ptr) == '+') |
| 4651 |
{ |
{ |
| 4652 |
ptr++; |
ptr++; |
| 4653 |
if ((digitab[*ptr] & ctype_digit) == 0) |
if ((digitab[*ptr] & ctype_digit) == 0) |
| 4654 |
{ |
{ |
| 4655 |
*errorcodeptr = ERR63; |
*errorcodeptr = ERR63; |
| 4656 |
goto FAILED; |
goto FAILED; |
| 4657 |
} |
} |
| 4658 |
} |
} |
| 4659 |
else if (refsign == '-') |
else if (refsign == '-') |
| 4660 |
{ |
{ |
| 4661 |
if ((digitab[ptr[1]] & ctype_digit) == 0) |
if ((digitab[ptr[1]] & ctype_digit) == 0) |
| 5821 |
|
|
| 5822 |
uschar cworkspace[COMPILE_WORK_SIZE]; |
uschar cworkspace[COMPILE_WORK_SIZE]; |
| 5823 |
|
|
|
|
|
| 5824 |
/* Set this early so that early errors get offset 0. */ |
/* Set this early so that early errors get offset 0. */ |
| 5825 |
|
|
| 5826 |
ptr = (const uschar *)pattern; |
ptr = (const uschar *)pattern; |