Forgot this file in previous commit. Fixes JIT non-UTF bug.

This commit is contained in:
Philip.Hazel 2019-05-13 16:38:18 +00:00
parent e118e60a68
commit 342c16ecd3
1 changed files with 4 additions and 1 deletions

View File

@ -8571,7 +8571,10 @@ int lgb, rgb, ricount;
PCRE2_SPTR bptr;
uint32_t c;
GETCHARINC(c, cc);
/* Patch by PH */
/* GETCHARINC(c, cc); */
c = *cc++;
#if PCRE2_CODE_UNIT_WIDTH == 32
if (c >= 0x110000)
return NULL;