| 338 |
else |
else |
| 339 |
{ |
{ |
| 340 |
so = 0; |
so = 0; |
| 341 |
eo = strlen(string); |
eo = (int)strlen(string); |
| 342 |
} |
} |
| 343 |
|
|
| 344 |
rc = pcre_exec((const pcre *)preg->re_pcre, NULL, string + so, (eo - so), |
rc = pcre_exec((const pcre *)preg->re_pcre, NULL, string + so, (eo - so), |
| 345 |
0, options, ovector, nmatch * 3); |
0, options, ovector, (int)(nmatch * 3)); |
| 346 |
|
|
| 347 |
if (rc == 0) rc = nmatch; /* All captured slots were filled in */ |
if (rc == 0) rc = (int)nmatch; /* All captured slots were filled in */ |
| 348 |
|
|
| 349 |
/* Successful match */ |
/* Successful match */ |
| 350 |
|
|