This commit is contained in:
Burkov Egor 2025-04-03 23:38:20 +01:00 committed by GitHub
commit 609ec1fe73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -177,7 +177,7 @@ UCharsTrie::next(int32_t uchar) {
UStringTrieResult
UCharsTrie::next(ConstChar16Ptr ptr, int32_t sLength) {
const char16_t *s=ptr;
if(sLength<0 ? *s==0 : sLength==0) {
if(s==nullptr || (sLength<0 ? *s==0 : sLength==0)) {
// Empty input.
return current();
}