Fix pattern overrun in utf extended mode for a # comment that hit the end.
This commit is contained in:
parent
2aa482039a
commit
0ea3274a53
10
ChangeLog
10
ChangeLog
|
@ -113,9 +113,13 @@ only when PCRE2_NO_START_OPTIMIZE was *not* set:
|
||||||
when the POSIX API was in use.
|
when the POSIX API was in use.
|
||||||
|
|
||||||
17. Added --enable-fuzz-support to "configure", causing an non-installed
|
17. Added --enable-fuzz-support to "configure", causing an non-installed
|
||||||
library containing a test function that can be called by fuzzers to be
|
library containing a test function that can be called by fuzzers to be
|
||||||
compiled. A non-installed binary to run the test function locally, called
|
compiled. A non-installed binary to run the test function locally, called
|
||||||
pcre2fuzzcheck is also compiled.
|
pcre2fuzzcheck is also compiled.
|
||||||
|
|
||||||
|
18. In UTF-8 or UTF-16 modes with PCRE2_EXTENDED (/x) set and a non-zero-
|
||||||
|
terminated pattern, if a # comment ran on to the end of the pattern, one or
|
||||||
|
more code units past the end were being read.
|
||||||
|
|
||||||
|
|
||||||
Version 10.22 29-July-2016
|
Version 10.22 29-July-2016
|
||||||
|
|
|
@ -2326,7 +2326,7 @@ while (ptr < ptrend)
|
||||||
}
|
}
|
||||||
ptr++;
|
ptr++;
|
||||||
#ifdef SUPPORT_UNICODE
|
#ifdef SUPPORT_UNICODE
|
||||||
if (utf) FORWARDCHAR(ptr);
|
if (utf) FORWARDCHARTEST(ptr, ptrend);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
continue; /* Next character in pattern */
|
continue; /* Next character in pattern */
|
||||||
|
|
|
@ -1731,6 +1731,8 @@
|
||||||
|
|
||||||
/'(*UTF)'/hex
|
/'(*UTF)'/hex
|
||||||
|
|
||||||
|
/'#('/hex,extended,utf
|
||||||
|
|
||||||
/a(?<=A\XB)/utf
|
/a(?<=A\XB)/utf
|
||||||
|
|
||||||
/ab(?<=A\RB)/utf
|
/ab(?<=A\RB)/utf
|
||||||
|
|
|
@ -4167,6 +4167,8 @@ No match
|
||||||
|
|
||||||
/'(*UTF)'/hex
|
/'(*UTF)'/hex
|
||||||
|
|
||||||
|
/'#('/hex,extended,utf
|
||||||
|
|
||||||
/a(?<=A\XB)/utf
|
/a(?<=A\XB)/utf
|
||||||
Failed: error 125 at offset 1: lookbehind assertion is not fixed length
|
Failed: error 125 at offset 1: lookbehind assertion is not fixed length
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue