ICU-22912 fix coverity warning in gencnval.c

See: https://unicode-org.atlassian.net/browse/ICU-22912
This commit is contained in:
Mike FABIAN 2024-09-22 11:36:06 +02:00 committed by Markus Scherer
parent 8ce61b1139
commit 67b5763557

View file

@ -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);