mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix certain combinations of regex range quantifiers
Fix regex transitions that have both min/max and a counter. In this case, we want to save the regex state before incrementing the counter. Fixes #301 and the issue reported here: https://mail.gnome.org/archives/xml/2016-April/msg00017.html
This commit is contained in:
parent
382fb056b5
commit
ea6e8f998d
4
result/regexp/issue301
Normal file
4
result/regexp/issue301
Normal file
@ -0,0 +1,4 @@
|
||||
Regexp: (a{1,2}|ab){2}
|
||||
abab: Ok
|
||||
Regexp: ((1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])\.){3}(1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])
|
||||
192.168.254.0: Ok
|
4
test/regexp/issue301
Normal file
4
test/regexp/issue301
Normal file
@ -0,0 +1,4 @@
|
||||
=>(a{1,2}|ab){2}
|
||||
abab
|
||||
=>((1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])\.){3}(1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])
|
||||
192.168.254.0
|
11
xmlregexp.c
11
xmlregexp.c
@ -3364,7 +3364,6 @@ xmlFARegExec(xmlRegexpPtr comp, const xmlChar *content) {
|
||||
/*
|
||||
* this is a multiple input sequence
|
||||
* If there is a counter associated increment it now.
|
||||
* before potentially saving and rollback
|
||||
* do not increment if the counter is already over the
|
||||
* maximum limit in which case get to next transition
|
||||
*/
|
||||
@ -3380,15 +3379,17 @@ xmlFARegExec(xmlRegexpPtr comp, const xmlChar *content) {
|
||||
counter = &exec->comp->counters[trans->counter];
|
||||
if (exec->counts[trans->counter] >= counter->max)
|
||||
continue; /* for loop on transitions */
|
||||
|
||||
}
|
||||
/* Save before incrementing */
|
||||
if (exec->state->nbTrans > exec->transno + 1) {
|
||||
xmlFARegExecSave(exec);
|
||||
}
|
||||
if (trans->counter >= 0) {
|
||||
#ifdef DEBUG_REGEXP_EXEC
|
||||
printf("Increasing count %d\n", trans->counter);
|
||||
#endif
|
||||
exec->counts[trans->counter]++;
|
||||
}
|
||||
if (exec->state->nbTrans > exec->transno + 1) {
|
||||
xmlFARegExecSave(exec);
|
||||
}
|
||||
exec->transcount = 1;
|
||||
do {
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user