| 189 |
static int show_malloc; |
static int show_malloc; |
| 190 |
static int use_utf8; |
static int use_utf8; |
| 191 |
static size_t gotten_store; |
static size_t gotten_store; |
| 192 |
|
static const unsigned char *last_callout_mark = NULL; |
| 193 |
|
|
| 194 |
/* The buffers grow automatically if very long input lines are encountered. */ |
/* The buffers grow automatically if very long input lines are encountered. */ |
| 195 |
|
|
| 226 |
"not used - internal error", |
"not used - internal error", |
| 227 |
"invalid combination of newline options", |
"invalid combination of newline options", |
| 228 |
"bad offset value", |
"bad offset value", |
| 229 |
NULL /* SHORTUTF8 is handled specially */ |
NULL, /* SHORTUTF8 is handled specially */ |
| 230 |
|
"nested recursion at the same subject position" |
| 231 |
}; |
}; |
| 232 |
|
|
| 233 |
|
|
| 961 |
fprintf(outfile, "\n"); |
fprintf(outfile, "\n"); |
| 962 |
first_callout = 0; |
first_callout = 0; |
| 963 |
|
|
| 964 |
|
if (cb->mark != last_callout_mark) |
| 965 |
|
{ |
| 966 |
|
fprintf(outfile, "Latest Mark: %s\n", |
| 967 |
|
(cb->mark == NULL)? "<unset>" : (char *)(cb->mark)); |
| 968 |
|
last_callout_mark = cb->mark; |
| 969 |
|
} |
| 970 |
|
|
| 971 |
if (cb->callout_data != NULL) |
if (cb->callout_data != NULL) |
| 972 |
{ |
{ |
| 973 |
int callout_data = *((int *)(cb->callout_data)); |
int callout_data = *((int *)(cb->callout_data)); |
| 2219 |
|
|
| 2220 |
pcre_callout = callout; |
pcre_callout = callout; |
| 2221 |
first_callout = 1; |
first_callout = 1; |
| 2222 |
|
last_callout_mark = NULL; |
| 2223 |
callout_extra = 0; |
callout_extra = 0; |
| 2224 |
callout_count = 0; |
callout_count = 0; |
| 2225 |
callout_fail_count = 999999; |
callout_fail_count = 999999; |