Skip to content

Commit 525fa87

Browse files
committed
isFOO_utf8_lc: Use utf8_to-uv_or_die not utf8_to_uvchr_buf
1 parent 0a4260b commit 525fa87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

regexec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ S_isFOO_utf8_lc(pTHX_ const U8 classnum, const U8* character, const U8* e)
616616
case CC_ENUM_VERTSPACE_: return is_VERTWS_high(character);
617617
default:
618618
return _invlist_contains_cp(PL_XPosix_ptrs[classnum],
619-
utf8_to_uvchr_buf(character, e, NULL));
619+
utf8_to_uv_or_die(character, e, NULL));
620620
}
621621
NOT_REACHED; /* NOTREACHED */
622622
}

0 commit comments

Comments
 (0)