mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-22764 Fix gendict memory safety in toml uchars mode
This commit is contained in:
parent
464531eb8e
commit
23bf38f10f
1 changed files with 3 additions and 1 deletions
|
@ -438,7 +438,9 @@ int main(int argc, char **argv) {
|
|||
fprintf(f, "transform_type = \"%s\"\n", isOffset ? "offset" : "none");
|
||||
fprintf(f, "transform_offset = %d\n", offset);
|
||||
|
||||
usrc_writeArray(f, "trie_data = [\n ", outData, isBytesTrie ? 8 : 16, outDataSize, " ", "\n]\n");
|
||||
int32_t outDataWidth = isBytesTrie ? 8 : 16;
|
||||
int32_t outDataLength = isBytesTrie ? outDataSize : outDataSize / U_SIZEOF_UCHAR;
|
||||
usrc_writeArray(f, "trie_data = [\n ", outData, outDataWidth, outDataLength, " ", "\n]\n");
|
||||
|
||||
|
||||
fclose(f);
|
||||
|
|
Loading…
Add table
Reference in a new issue