mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-22516 Return error while the style is invalid
To avoid later unknown address in icu_74::UnicodeString::copyFrom
This commit is contained in:
parent
6d1999fbb9
commit
c1475f4bbd
1 changed files with 4 additions and 0 deletions
|
@ -805,6 +805,10 @@ RelativeDateTimeFormatter::RelativeDateTimeFormatter(
|
|||
if (U_FAILURE(status)) {
|
||||
return;
|
||||
}
|
||||
if (styl < 0 || UDAT_STYLE_COUNT <= styl) {
|
||||
status = U_ILLEGAL_ARGUMENT_ERROR;
|
||||
return;
|
||||
}
|
||||
if ((capitalizationContext >> 8) != UDISPCTX_TYPE_CAPITALIZATION) {
|
||||
status = U_ILLEGAL_ARGUMENT_ERROR;
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue