Forgot this file in previous commit. Fixes JIT non-UTF bug.
This commit is contained in:
parent
e118e60a68
commit
342c16ecd3
|
@ -8571,7 +8571,10 @@ int lgb, rgb, ricount;
|
||||||
PCRE2_SPTR bptr;
|
PCRE2_SPTR bptr;
|
||||||
uint32_t c;
|
uint32_t c;
|
||||||
|
|
||||||
GETCHARINC(c, cc);
|
/* Patch by PH */
|
||||||
|
/* GETCHARINC(c, cc); */
|
||||||
|
|
||||||
|
c = *cc++;
|
||||||
#if PCRE2_CODE_UNIT_WIDTH == 32
|
#if PCRE2_CODE_UNIT_WIDTH == 32
|
||||||
if (c >= 0x110000)
|
if (c >= 0x110000)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in New Issue