Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 609592
Collapse All | Expand All

(-)testdata/testinput12 (+2 lines)
Lines 104-107 Link Here
104
/(.|.)*?bx/
104
/(.|.)*?bx/
105
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabax
105
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabax
106
106
107
/((?(?!))x)(?'name')(?1)/S++
108
107
/-- End of testinput12 --/
109
/-- End of testinput12 --/
(-)testdata/testoutput12 (+2 lines)
Lines 201-204 Link Here
201
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabax
201
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabax
202
Error -8 (match limit exceeded)
202
Error -8 (match limit exceeded)
203
203
204
/((?(?!))x)(?'name')(?1)/S++
205
204
/-- End of testinput12 --/
206
/-- End of testinput12 --/
(-)pcre_jit_compile.c (-1 / +1 lines)
Lines 8110-8116 Link Here
8110
8110
8111
    if (*matchingpath == OP_FAIL)
8111
    if (*matchingpath == OP_FAIL)
8112
      stacksize = 0;
8112
      stacksize = 0;
8113
    if (*matchingpath == OP_RREF)
8113
    else if (*matchingpath == OP_RREF)
8114
      {
8114
      {
8115
      stacksize = GET2(matchingpath, 1);
8115
      stacksize = GET2(matchingpath, 1);
8116
      if (common->currententry == NULL)
8116
      if (common->currententry == NULL)
(-)ChangeLog (+2 lines)
Lines 15-21 Link Here
15
next line instead of moving on to the end of the matched string, which can be 
15
next line instead of moving on to the end of the matched string, which can be 
16
several lines after the start.
16
several lines after the start.
17
17
18
3.  Fix a missing else in the JIT compiler reported by 'idaifish'.
18
19
20
19
Version 8.40 11-January-2017
21
Version 8.40 11-January-2017
20
----------------------------
22
----------------------------
21
23

Return to bug 609592