mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 13:05:31 +00:00
ICU-23062 Added null check in one spot in genrb where we know we've seen crashes.
This commit is contained in:
parent
9cc28a6428
commit
faa80a2972
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ static char *getInvariantString(ParseState* state, uint32_t *line, struct UStrin
|
|||
|
||||
if(!uprv_isInvariantUString(tokenValue->fChars, tokenValue->fLength)) {
|
||||
*status = U_INVALID_FORMAT_ERROR;
|
||||
error(*line, "invariant characters required for table keys, binary data, etc.");
|
||||
error((line == nullptr) ? 0 : *line, "invariant characters required for table keys, binary data, etc.");
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue