mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-22832 Fix msan complain about use-of-uninitialized-value
This commit is contained in:
parent
40189ffe57
commit
0253c828d9
1 changed files with 4 additions and 4 deletions
|
@ -272,7 +272,7 @@ int32_t toLower(int32_t caseLocale, uint32_t options,
|
|||
} else {
|
||||
c = lead;
|
||||
}
|
||||
const char16_t *s;
|
||||
const char16_t *s = nullptr;
|
||||
if (caseLocale >= 0) {
|
||||
csc->cpStart = cpStart;
|
||||
csc->cpLimit = srcIndex;
|
||||
|
@ -369,7 +369,7 @@ int32_t toUpper(int32_t caseLocale, uint32_t options,
|
|||
c = lead;
|
||||
}
|
||||
csc->cpLimit = srcIndex;
|
||||
const char16_t *s;
|
||||
const char16_t *s = nullptr;
|
||||
c = ucase_toFullUpper(c, utf16_caseContextIterator, csc, &s, caseLocale);
|
||||
if (c >= 0) {
|
||||
destIndex = appendUnchanged(dest, destIndex, destCapacity,
|
||||
|
@ -579,8 +579,8 @@ ustrcase_internalToTitle(int32_t caseLocale, uint32_t options, BreakIterator *it
|
|||
}
|
||||
|
||||
if (c == u'I' || c == u'Í') {
|
||||
titleLimit = maybeTitleDutchIJ(src, c, titleStart + 1, index,
|
||||
dest, destIndex, destCapacity, options,
|
||||
titleLimit = maybeTitleDutchIJ(src, c, titleStart + 1, index,
|
||||
dest, destIndex, destCapacity, options,
|
||||
edits);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue