[pcre-dev] [Bug 2432] New: Fail with Unicode character scrip…

Top Page
Delete this message
Author: admin
Date:  
To: pcre-dev
New-Topics: [pcre-dev] [Bug 2432] Fail with Unicode character scripts when JIT is enabled, [pcre-dev] [Bug 2432] Fail with Unicode character scripts when JIT is enabled, [pcre-dev] [Bug 2432] Fail with Unicode character scripts when JIT is enabled, [pcre-dev] [Bug 2432] Fail with Unicode character scripts when JIT is enabled, [pcre-dev] [Bug 2432] Fail with Unicode character scripts when JIT is enabled, [pcre-dev] [Bug 2432] Fail with Unicode character scripts when JIT is enabled, [pcre-dev] [Bug 2432] Fail with Unicode character scripts when JIT is enabled, [pcre-dev] [Bug 2432] Fail with Unicode character scripts when JIT is enabled, [pcre-dev] [Bug 2432] Fail with Unicode character scripts when JIT is enabled
Subject: [pcre-dev] [Bug 2432] New: Fail with Unicode character scripts when JIT is enabled
https://bugs.exim.org/show_bug.cgi?id=2432

            Bug ID: 2432
           Summary: Fail with Unicode character scripts when JIT is
                    enabled
           Product: PCRE
           Version: 10.33 (PCRE2)
          Hardware: x86
                OS: Linux
            Status: NEW
          Severity: bug
          Priority: medium
         Component: Code
          Assignee: ph10@???
          Reporter: nomadic.ua@???
                CC: pcre-dev@???


There is a problem in the latest version 10.33 with JIT enabled

```
$ pcre2test -jit
PCRE2 version 10.33 2019-04-16
re> ~[\pL\p{Cyrillic}]~
data> test

No match
```

When JIT is off, everything is ok
```
$ pcre2test     
PCRE2 version 10.33 2019-04-16

re> ~[\pL\p{Cyrillic}]~
data> test

0: t
```

Everything works on the old version
```
$ pcre2test -jit
PCRE2 version 10.32 2018-09-10
re> ~[\pL\p{Cyrillic}]~
data> test

0: t
```

--
You are receiving this mail because:
You are on the CC list for the bug.