Fix incorrect value reading in JIT.
This commit is contained in:
parent
50a51cb7e6
commit
d4fa336fbc
|
@ -7489,7 +7489,7 @@ while (*cc != XCL_END)
|
|||
{
|
||||
SLJIT_ASSERT(*cc == XCL_PROP || *cc == XCL_NOTPROP);
|
||||
cc++;
|
||||
if (*cc == PT_CLIST && *cc == XCL_PROP)
|
||||
if (*cc == PT_CLIST && cc[-1] == XCL_PROP)
|
||||
{
|
||||
other_cases = PRIV(ucd_caseless_sets) + cc[1];
|
||||
while (*other_cases != NOTACHAR)
|
||||
|
|
Loading…
Reference in New Issue