Update to 8.5.19
This commit is contained in:
@@ -1117,7 +1117,7 @@ cbrdissect(
|
||||
*/
|
||||
|
||||
i = 0;
|
||||
for (p = begin; p <= stop && (i < max || max == INFINITY); p += len) {
|
||||
for (p = begin; p <= stop && (i < max || max == DUPINF); p += len) {
|
||||
if ((*v->g->compare)(paren, p, len) != 0) {
|
||||
break;
|
||||
}
|
||||
@@ -1132,7 +1132,7 @@ cbrdissect(
|
||||
if (p != end) { /* didn't consume all of it */
|
||||
return REG_NOMATCH;
|
||||
}
|
||||
if (min <= i && (i <= max || max == INFINITY)) {
|
||||
if (min <= i && (i <= max || max == DUPINF)) {
|
||||
return REG_OKAY;
|
||||
}
|
||||
return REG_NOMATCH; /* out of range */
|
||||
|
||||
Reference in New Issue
Block a user