mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-22912 fix coverity warning in gencnval.c
See: https://unicode-org.atlassian.net/browse/ICU-22912
This commit is contained in:
parent
8ce61b1139
commit
67b5763557
1 changed files with 6 additions and 0 deletions
|
@ -273,6 +273,12 @@ main(int argc, char* argv[]) {
|
|||
|
||||
const char* sourcedir = options[SOURCEDIR].value;
|
||||
if (sourcedir != NULL && *sourcedir != 0) {
|
||||
if (strlen(sourcedir) + strlen(path) + 2 > sizeof(pathBuf)) {
|
||||
fprintf(stderr,
|
||||
"The source file name is too long, it must be less than %d in bytes.\n",
|
||||
(int) sizeof(pathBuf) - 1);
|
||||
exit(U_ILLEGAL_ARGUMENT_ERROR);
|
||||
}
|
||||
char *end;
|
||||
uprv_strcpy(pathBuf, sourcedir);
|
||||
end = uprv_strchr(pathBuf, 0);
|
||||
|
|
Loading…
Add table
Reference in a new issue