mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 21:15:35 +00:00
ICU-23074 Add nullptr check for UCharsTrie::next
This commit is contained in:
parent
30e23b0d28
commit
5fd9e2b3e5
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue