mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-5426 Make sure that any overflow for the new smaller buffer is registered as a failure.
X-SVN-Rev: 20473
This commit is contained in:
parent
8b00b7daf4
commit
b3c7746b16
1 changed files with 5 additions and 0 deletions
|
@ -525,6 +525,11 @@ testTrieRanges(const char *testName,
|
|||
utrie_close(newTrie);
|
||||
return;
|
||||
}
|
||||
if (length >= (int32_t)sizeof(storageHolder.storage)) {
|
||||
log_err("error: utrie_serialize(%s) needs more memory\n", testName);
|
||||
utrie_close(newTrie);
|
||||
return;
|
||||
}
|
||||
|
||||
/* test linear Latin-1 range from utrie_getData() */
|
||||
if(latin1Linear) {
|
||||
|
|
Loading…
Add table
Reference in a new issue