mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-22904 Svace: Fix potential out-of-bound access
This commit is contained in:
parent
1754ff2a10
commit
da60e7a70d
1 changed files with 1 additions and 1 deletions
|
@ -503,7 +503,7 @@ struct RelDateFmtDataSink : public ResourceSink {
|
|||
|
||||
// Put in the proper spot, but don't override existing data.
|
||||
n = offset + UDAT_DIRECTION_THIS; // Converts to index in UDAT_R
|
||||
if (n < fDatesLen && fDatesPtr[n].string == nullptr) {
|
||||
if (0 <= n && n < fDatesLen && fDatesPtr[n].string == nullptr) {
|
||||
// Not found and n is an empty slot.
|
||||
fDatesPtr[n].offset = offset;
|
||||
fDatesPtr[n].string = value.getString(len, errorCode);
|
||||
|
|
Loading…
Add table
Reference in a new issue